* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
  background-color: #050505;
  color: #e8e9ed;
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
}

/* تخصيص شريط التمرير */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #121212;
}
::-webkit-scrollbar-thumb {
  background: #c7a17a;
  border-radius: 10px;
}

h1,
h2,
h3,
h4,
.logo,
.nav-links,
.btn {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* تأثير الزجاج */
.glass-card {
  background: rgba(20, 20, 30, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 215, 170, 0.15);
  transition: all 0.3s ease;
}

/* الهيدر */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.2rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199, 161, 122, 0.3);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  line-height: 0;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
}
.nav-links a:hover {
  color: #d4af7a;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* القسم الرئيسي (Hero) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 80% 30%, #0f0f15, #010101);
  overflow: hidden;
}
.hero-content {
  max-width: 850px;
  z-index: 2;
}
.hero-sub {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #c7a17a;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-title .art-accent {
  background: linear-gradient(120deg, #e9cba7, #c7a17a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 1.2rem;
  color: #bcbcbc;
  max-width: 600px;
  margin-bottom: 2rem;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #c7a17a;
  color: #0a0a0a;
  box-shadow: 0 8px 20px rgba(199, 161, 122, 0.3);
}
.btn-primary:hover {
  background: #e0b68c;
  transform: translateY(-3px);
}
.btn-outline {
  border: 1.5px solid #c7a17a;
  color: #c7a17a;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(199, 161, 122, 0.1);
  transform: translateY(-3px);
}

section {
  padding: 100px 0;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-sub {
  color: #c7a17a;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.grid-2,
.grid-3 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card,
.dept-card,
.partner-card {
  background: rgba(15, 15, 20, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 1.8rem;
  padding: 2rem;
  border: 1px solid rgba(199, 161, 122, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}
.service-card:hover,
.dept-card:hover {
  transform: translateY(-8px);
  border-color: #c7a17a;
}
.card-icon {
  font-size: 2.5rem;
  color: #c7a17a;
  margin-bottom: 1.2rem;
}
.card-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.stat-badge {
  background: #c7a17a20;
  border-right: 4px solid #c7a17a;
  padding: 1rem;
  border-radius: 1rem;
}
.story-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: linear-gradient(135deg, #12121a, #08080c);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid #2a241e;
  margin-top: 2rem;
}
.story-content {
  flex: 2;
}
.story-date {
  color: #c7a17a;
  font-weight: 600;
}
footer {
  background: #030303;
  padding: 60px 0 30px;
  border-top: 1px solid #1e1e1e;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}
.social-links a {
  color: #aaa;
  margin-left: 1.2rem;
  font-size: 1.3rem;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}
.social-links a:hover {
  color: #c7a17a;
}
.text-gold {
  color: #c7a17a;
}
.lang-switch {
  font-family: "Cairo", sans-serif;
  background: transparent;
  border: 1px solid #c7a17a;
  color: #c7a17a;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
  text-decoration: none;
}
.lang-switch:hover {
  background: #c7a17a;
  color: #0a0a0a;
}
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.4s;
    z-index: 999;
  }
  .nav-links.active {
    right: 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
input,
textarea {
  font-family: "Cairo", sans-serif;
}
.rtl-list {
  padding-right: 1rem;
}
.paralex img {
  object-fit: cover;
  width: 100%;
}
.team-img-wrapper img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.team-img-wrapper:hover img {
    filter: grayscale(0%);
}