/* =====================================================
   Ø§Ù„Ø§Ø®ØªÙŠØ§Ø± Ù…ÙŠØ¯ÙŠØ§ â€” style.css
   Bootstrap 5 + Font Awesome 6 + Custom Theme
   ===================================================== */
/* Note: Google Fonts are loaded via <link> in HTML â€” no @import needed here */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:        #0F2B57;
  --navy-dark:   #091d3e;
  --navy-mid:    #163566;
  --navy-light:  #1e4a8a;
  --gold:        #C9A84C;
  --gold-light:  #E2C97A;
  --gold-dim:    rgba(201,168,76,0.15);
  --white:       #ffffff;
  --gray-light:  #f4f6f9;
  --gray-mid:    #e8ecf2;
  --gray-text:   #6b7a9a;
  --text-dark:   #0d1f3c;
  --font-main:   'Cairo', 'Tajawal', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-soft: 0 8px 40px rgba(15,43,87,0.10);
  --shadow-hover:0 20px 60px rgba(15,43,87,0.18);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 900; }

h2.section-title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}
h2.section-title.light { color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 560px;
  line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.7); }
.text-center .section-desc { margin: auto; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.5);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* ===== GLASS ===== */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}

/* ===== SECTION PADDING ===== */
.section-pad { padding: 100px 0; }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) {transition-delay: 0.1s;/* border-radius: 10%; */}
.fade-up:nth-child(3) {transition-delay: 0.2s;/* border-radius: 10%; */}
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1050;
  height: 80px;
  transition: var(--transition);
  background: #fff;
}
#navbar .navbar-brand { gap: 12px; }
#navbar .brand-ar { color: var(--white); font-size: 16px; font-weight: 700; line-height: 1.2; display: block; }
#navbar .brand-en { color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 400; letter-spacing: 1px; display: block; }
#navbar .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: white;
  text-decoration: none;
}

#navbar.scrolled {
  background: #fff !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  height: 68px;
}

#navbar .navbar-nav .nav-link {
  color: var(--navy-dark)!important;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: var(
  --transition);
}
#navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
#navbar .navbar-nav .nav-link:hover {color: var(--gold) !important;}
#navbar .navbar-nav .nav-link:hover::after { width: 100%; }

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 991px) {
  #navbar .navbar-collapse {
    background: var(--white);
    backdrop-filter: blur(20px);
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    border-radius: 0 0 16px 16px;
  }
  #navbar .navbar-nav { gap: 8px; }
  #navbar .navbar-nav .nav-link { padding: 10px 12px !important; }
}

/* ===================== HERO ===================== */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; will-change: opacity; }
.hero-slide.active { opacity: 1; }
.slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
  will-change: transform;
}
.hero-slide.active .slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,29,62,0.92) 0%, rgba(15,43,87,0.75) 50%, rgba(9,29,62,0.85) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
h1.hero-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
h1.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 6px; margin: auto;
}
.scroll-dot::after {
  content: '';
  width: 4px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%,100% { opacity:1; transform:translateY(0); }
  70%      { opacity:0; transform:translateY(12px); }
}
.hero-indicators {
  position: absolute; bottom: 40px; right: 5%;
  z-index: 2; display: flex; gap: 8px;
}
.indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--transition);
  border: none; padding: 0;
}
.indicator.active { width: 28px; border-radius: 4px; background: var(--gold); }

/* ===================== STATS ===================== */
#stats {background: var(--navy);padding: 40px 0;/* margin-top: -2%; */}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  margin: 0 5px;
  border-radius: 10%;
}
.stat-item:first-child {/* border-radius: var(--radius-lg) 0 0 var(--radius-lg); */}
.stat-item:last-child  {/* border-radius: 0 var(--radius-lg) var(--radius-lg) 0; */}
.stat-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.stat-number {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.8; }
/* FA icons inside stat */
.stat-icon-fa {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================== ABOUT ===================== */
#about { background: var(--gray-light); }
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,43,87,0.6) 0%, transparent 60%);
}
.about-float {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.about-float-num { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.about-float-txt { font-size: 12px; color: var(--gray-text); font-weight: 600; margin-top: 4px; }
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.feature-list { list-style: none; padding: 0; margin-top: 32px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(15,43,87,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--navy);
}
.feature-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 0; }

/* ===================== SERVICES ===================== */
#services { background: var(--white); }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.service-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(15,43,87,0.08);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 28px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--navy); color: var(--gold); }
.service-num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; display: block; }
h3.service-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.service-desc { font-size: 14px; color: var(--gray-text); line-height: 1.8; margin-bottom: 24px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 12px; }

/* ===================== PROJECTS ===================== */
#projects { background: var(--navy-dark); }
.projects-slider-wrap { position: relative; overflow: hidden; }
.projects-track {
  display: flex; gap: 28px;
  padding: 0 5%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card {
  flex-shrink: 0;
  width: 370px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.project-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; 
  /* opacity: 0.6; */
  position: relative; overflow: hidden;
}
.project-img img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.project-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,29,62,0.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.project-card:hover .project-img-overlay { opacity: 1; }
.project-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px; font-weight: 800;
  padding: 5px 14px; border-radius: 50px;
  z-index: 2;
}
.project-body { padding: 28px; }
.project-client { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.project-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

.slider-controls { display: flex; gap: 12px; padding: 32px 5% 0; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white; font-size: 18px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

/* ===================== WHY US ===================== */
#why { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(15,43,87,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--navy);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--navy); color: var(--gold); }
.why-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--gray-text); line-height: 1.7; margin: 0; }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr; } }

/* ===================== GALLERY ===================== */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 400px; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,29,62,0.8) 0%, rgba(201,168,76,0.3) 100%);
  opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-overlay span { color: white; font-size: 14px; font-weight: 700; }
.gallery-overlay .gallery-plus { font-size: 32px; font-weight: 300; line-height: 1; }
.gallery-cta { text-align: center; margin-top: 48px; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; min-height: auto; }
  .gallery-item.wide { grid-column: span 2; }
}

/* ===================== TESTIMONIALS ===================== */
#testimonials { background: var(--navy); content-visibility: auto; contain-intrinsic-size: 0 500px; }
.testimonials-wrap { max-width: 900px; margin: 60px auto 0; position: relative; }
.testimonial-slider { overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card {
  flex-shrink: 0; width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 52px 60px;
  backdrop-filter: blur(10px);
  text-align: center;
}
.testimonial-quote { font-size: 80px; color: var(--gold); line-height: 0.6; margin-bottom: 24px; opacity: 0.6; font-family: Georgia, serif; }
.testimonial-text { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 40px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--navy-dark);
  flex-shrink: 0;
}
.author-name { font-size: 16px; font-weight: 700; color: var(--white); text-align: right; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.5); text-align: right; }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: var(--transition); border: none; padding: 0; }
.t-dot.active { width: 24px; border-radius: 4px; background: var(--gold); }

@media (max-width: 768px) {
  .testimonial-card { padding: 36px 28px; }
  .testimonial-text { font-size: 15px; }
}

/* ===================== PARTNERS ===================== */
#partners { background: var(--gray-light); padding: 80px 0; content-visibility: auto; contain-intrinsic-size: 0 300px; }
.partners-header { text-align: center; margin-bottom: 48px; }
.partners-label { font-size: 13px; font-weight: 600; color: var(--gray-text); letter-spacing: 2px; margin-bottom: 8px; }
.partners-track-wrap { overflow: hidden; }
.partners-track {
  display: flex; gap: 60px;
  animation: scrollPartners 25s linear infinite;
  width: max-content;
  will-change: transform;
}
.partners-track-wrap:hover .partners-track { animation-play-state: paused; }
@keyframes scrollPartners { from{transform:translate3d(0,0,0)} to{transform:translate3d(50%,0,0)} }
.partner-logo {
  height: 56px; min-width: 160px; display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 14px;
  padding: 12px 24px;
  white-space: nowrap;
  border: 1px solid var(--gray-mid); transition: var(--transition);
}
.partner-logo img {
  max-height: 32px; width: auto; max-width: 100%;
  filter: grayscale(100%) opacity(0.6);
  transition: var(--transition);
}
.partner-logo:hover { box-shadow: var(--shadow-soft); border-color: var(--navy-light); }
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ===================== CTA ===================== */
#cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(30,74,138,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.cta-badge { margin-bottom: 24px; }
.cta-badge span {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 8px 24px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
}
h2.cta-title { font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 48px; }

.cta-contact-item { text-align: center; }
.cta-contact-item .cta-icon { font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.cta-contact-item .cta-label { color: rgba(255,255,255,0.5); font-size: 12px; margin-bottom: 4px; }
.cta-contact-item .cta-value { color: white; font-weight: 600; font-size: 15px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-about { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 11px; opacity: 0; transform: translateX(6px); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover i { opacity: 1; transform: translateX(0); }
.footer-contact-item {display: flex;align-items: flex-start;gap: 12px;margin-bottom: 16px;}
.contact-icon-fa { color: var(--gold); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.contact-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-copy span { color: var(--gold); }

.contact-text a{ font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; text-decoration:none}
.contact-text a:hover{ color: var(--gold)}

.footer-contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
}

.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.5;
  text-decoration:none;
}

.footer-contact-item a:hover {
    color: var(--gold) !important;
}

/* ===================== BACK TO TOP ===================== */
#backToTop {
  position: fixed; bottom: 30px; left: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold-light); transform: translateY(-3px); }

@media (max-width: 768px) { 
  .g-5, .gx-5 { 
    --bs-gutter-x: 0rem;
  } 
  .section-pad {
    overflow-x: clip; 
  }
  .projects-track {
    gap: 26px;
    padding: 0 0%;
  }
}

/* =====================================================
   ØµÙØ­Ø§Øª Ø§Ù„Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ø¥Ø¶Ø§ÙÙŠØ© - pages.css
   ===================================================== */

/* ===== PAGE HEADER ===== */

.page-header{
    position:relative;
    overflow:hidden;
    min-height: 300px;
    display:flex;
    align-items:center;
    padding:160px 0 120px;
}

/* Background Image */

.page-header-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(9,29,62,.92) 0%,
        rgba(15,43,87,.75) 50%,
        rgba(9,29,62,.88) 100%
    );
    z-index:1;
}

/* Gold Glow */

.page-header::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%,rgba(201,168,76,.18),transparent 45%),
        radial-gradient(circle at 80% 70%,rgba(201,168,76,.12),transparent 45%);
    z-index:2;
}

/* Content */

.page-header .container{
    position:relative;
    z-index:3;
}

.page-header-content{
    text-align:center;
}

.page-header-content h1{
    font-size:clamp(34px,4.8vw,58px);
    color:#fff;
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.page-header-content h1 span{
    color:var(--gold);
}

.page-header-content p{
    color:rgba(255,255,255,.82);
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
}

/* Breadcrumb */

.page-header-breadcrumb{
    position:absolute;
    right: -70px;
    bottom: -70px;
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.85);
    font-size:15px;
    z-index:4;
}

.page-header-breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.page-header-breadcrumb a:hover{
    color:var(--gold);
}

.page-header-breadcrumb i{
    margin-left:6px;
    color:var(--gold);
}

/* ===== ABOUT PAGE ===== */
.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.story-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.story-stat {
  background: var(--gray-light);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.story-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.story-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
}

.story-stat-label {
  font-size: 13px;
  color: var(--gray-text);
}

/* ===== VALUE CARDS ===== */
.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(15,43,87,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--navy);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--navy);
  color: var(--gold);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}

.team-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}

/* ===== SERVICES PAGE ===== */
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.service-features li {
  font-size: 13px;
  color: var(--gray-text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--gold);
  font-size: 12px;
}

/* ===== GALLERY PAGE ===== */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 24px;
  border: 2px solid var(--gray-mid);
  border-radius: 50px;
  background: transparent;
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.filter-btn:hover {
  border-color: var(--navy-light);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.filter-btn.active:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* Gallery grid override for pages */
.gallery-grid-pages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid-pages .gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-grid-pages .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,29,62,0.8) 0%, rgba(201,168,76,0.3) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-grid-pages .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid-pages .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-grid-pages .gallery-overlay .gallery-plus {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}

.gallery-grid-pages .gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .gallery-grid-pages {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid-pages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid-pages {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  background: var(--gray-light);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  height: 100%;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(15,43,87,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
}

.contact-info-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-mid);
}

.contact-social span {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-text);
  transition: var(--transition);
  text-decoration: none;
}

.contact-social a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-mid);
}

.contact-form-wrapper h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-form-wrapper label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.contact-form-wrapper .form-control {
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(15,43,87,0.1);
}

.contact-form-wrapper .form-control.is-invalid {
  border-color: #dc3545;
}

.contact-form-wrapper .form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.contact-form-wrapper .invalid-feedback {
  font-size: 12px;
  color: #dc3545;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--gray-light);
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: var(--gold);
}

.cta-section p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 28px;
}

/* ===== NAVBAR ACTIVE LINK ===== */
#navbar .navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

#navbar .navbar-nav .nav-link.active::after {
  width: 100%;
  background: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-header {
    padding: 140px 0 60px;
  }
  
  .contact-info {
    padding: 32px 24px;
  }
  
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  
  .team-card {
    padding: 28px 20px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  #navbar.scrolled {
    height: 80px;
  }
  .page-header-breadcrumb {
    right: 10px;
    bottom: -40px;
  }
}

#project-page .project-title {
  color: #091d3e;
}

#project-page .project-desc {
  color: #091d3e;
}

.footer-copy a {
  color: #fff;
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gold);
}

.navbar-logo {
    width: 180px;
    height: 60px;
    object-fit: cover;
}

.slider-controls{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slider-arrows{
    display: flex;
    gap: 12px;
}

 /* ===== Service Detail — page-specific additions ===== */
    .service-detail-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:start; }
    @media (max-width: 991px){ .service-detail-grid{ grid-template-columns: 1fr; } }

    .service-hero-icon{
      width:84px; height:84px; border-radius:22px;
      background:rgba(15,43,87,0.08); color:var(--navy);
      display:flex; align-items:center; justify-content:center;
      font-size:32px; margin-bottom:28px;
    }

    .service-detail-img{
      width:100%; aspect-ratio:4/3; border-radius:var(--radius-xl);
      overflow:hidden; box-shadow:var(--shadow-soft); position:relative;
    }
    .service-detail-img img{ width:100%; height:100%; object-fit:cover; }
    .service-detail-img::after{
      content:''; position:absolute; inset:0;
      background:linear-gradient(135deg, rgba(15,43,87,0.45) 0%, transparent 55%);
    }

    .service-meta-card{
      background:var(--white); border:1px solid var(--gray-mid);
      border-radius:var(--radius-lg); padding:28px 30px;
      box-shadow:var(--shadow-soft); margin-top:-70px; position:relative; z-index:2;
    }
    .service-meta-card .row > div{ padding-top:14px; padding-bottom:14px; }
    .service-meta-card .row > div:not(:last-child){ border-left:1px solid var(--gray-mid); }
    @media (max-width: 575px){ .service-meta-card .row > div:not(:last-child){ border-left:none; border-bottom:1px solid var(--gray-mid); } }
    .meta-label{ font-size:12px; color:var(--gray-text); font-weight:600; margin-bottom:4px; }
    .meta-value{ font-size:15px; color:var(--navy); font-weight:800; }

    .process-steps{ counter-reset: step; margin-top:8px; }
    .process-step{
      display:flex; gap:20px; align-items:flex-start;
      padding:24px 0; border-bottom:1px solid var(--gray-mid);
    }
    .process-step:last-child{ border-bottom:none; }
    .process-step-num{
      counter-increment: step; flex-shrink:0;
      width:48px; height:48px; border-radius:50%;
      background:var(--navy); color:var(--gold);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:17px;
    }
    .process-step-num::before{ content: counter(step, decimal-leading-zero); }
    .process-step h4{ font-size:16px; font-weight:800; color:var(--navy); margin-bottom:6px; }
    .process-step p{ font-size:14px; color:var(--gray-text); line-height:1.8; margin:0; }

    .other-services-list{ display:flex; flex-direction:column; gap:10px; }
    .other-service-link{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:16px 20px; border-radius:14px;
      background:var(--gray-light); text-decoration:none;
      color:var(--navy); font-weight:700; font-size:14px;
      transition:var(--transition); border:1px solid transparent;
    }
    .other-service-link:hover{ background:var(--white); border-color:var(--gold); color:var(--navy); transform:translateX(-4px); }
    .other-service-link i.fa-arrow-left{ color:var(--gold); }
    .other-service-link .os-icon{
      width:38px; height:38px; border-radius:10px; flex-shrink:0;
      background:rgba(15,43,87,0.08); color:var(--navy);
      display:flex; align-items:center; justify-content:center; font-size:15px;
    }

    .sidebar-cta-card{
      background:linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius:var(--radius-lg); padding:36px 30px; text-align:center; color:var(--white);
    }
    .sidebar-cta-card i{ font-size:30px; color:var(--gold); margin-bottom:16px; display:inline-block; }
    .sidebar-cta-card h4{ font-size:18px; font-weight:800; margin-bottom:10px; }
    .sidebar-cta-card p{ font-size:13px; color:rgba(255,255,255,0.65); margin-bottom:22px; line-height:1.7; }

    .new-btn i {
      font-size: 20px;
      margin-bottom: 0;
    }