/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-bw3uevzuax] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.page[b-bw3uevzuax] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header[b-bw3uevzuax] {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner[b-bw3uevzuax] {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand[b-bw3uevzuax] {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark[b-bw3uevzuax] {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-text[b-bw3uevzuax] {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong[b-bw3uevzuax] {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
}
.brand-text small[b-bw3uevzuax] {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}
.main-nav[b-bw3uevzuax] {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav[b-bw3uevzuax]  a {
  position: relative;
  color: var(--text-primary);
  font-weight: 700;
  transition: var(--transition);
}
.main-nav[b-bw3uevzuax]  a:hover,
.main-nav[b-bw3uevzuax]  a.active {
  color: var(--amber);
}
.main-nav[b-bw3uevzuax]  a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--amber);
  border-radius: 999px;
}
main[b-bw3uevzuax] {
  flex: 1;
}
footer[b-bw3uevzuax] {
  background: var(--bg-navy);
  color: white;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
footer[b-bw3uevzuax]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-inner[b-bw3uevzuax] {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
.footer-brand p[b-bw3uevzuax] {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: #cbd5e1;
  line-height: 2;
}
.footer-logo .brand-mark[b-bw3uevzuax] {
  background: var(--amber);
  color: var(--bg-navy);
}
.footer-logo .brand-text strong[b-bw3uevzuax] {
  color: white;
}
.footer-logo .brand-text small[b-bw3uevzuax] {
  color: #94a3b8;
}
.footer-nav[b-bw3uevzuax] {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-nav h3[b-bw3uevzuax] {
  color: var(--amber);
  margin: 0 0 1rem;
}
.footer-nav[b-bw3uevzuax]  a {
  color: #cbd5e1;
  transition: var(--transition);
}
.footer-nav[b-bw3uevzuax]  a:hover {
  color: var(--amber);
}
.footer-bottom[b-bw3uevzuax] {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  text-align: center;
}
.footer-bottom p[b-bw3uevzuax] {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}
@media (max-width: 850px) {
  .header-inner[b-bw3uevzuax] {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  main[b-bw3uevzuax] {
    padding-top: 122px;
  }
  .main-nav[b-bw3uevzuax] {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .footer-inner[b-bw3uevzuax] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* /Pages/AtiyaKhouri.razor.rz.scp.css */
:root[b-06tf7rsa10] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.profile-page[b-06tf7rsa10] {
  direction: rtl;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-light);
}
.profile-page article[b-06tf7rsa10] {
  max-width: var(--container);
  margin: 0 auto;
}
.profile-hero[b-06tf7rsa10] {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.profile-hero[b-06tf7rsa10]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.profile-hero .eyebrow[b-06tf7rsa10],
.profile-hero h1[b-06tf7rsa10],
.profile-hero p[b-06tf7rsa10] {
  position: relative;
  z-index: 1;
}
.profile-hero .eyebrow[b-06tf7rsa10] {
  color: var(--amber);
  font-weight: 800;
}
.profile-hero h1[b-06tf7rsa10] {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.profile-hero p[b-06tf7rsa10] {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.1rem;
  margin: 0;
}
.profile-content[b-06tf7rsa10] {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.profile-number[b-06tf7rsa10] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  color: var(--amber);
  font-size: 4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-text[b-06tf7rsa10] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}
.profile-text p[b-06tf7rsa10] {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-size: 1.08rem;
}
.profile-text p:last-child[b-06tf7rsa10] {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .profile-content[b-06tf7rsa10] {
    grid-template-columns: 1fr;
  }
  .profile-hero[b-06tf7rsa10],
  .profile-text[b-06tf7rsa10] {
    padding: 3rem 1.5rem;
  }
}
/* /Pages/Home.razor.rz.scp.css */
:root[b-pije9pzat9] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.home-page[b-pije9pzat9] {
  direction: rtl;
  background: var(--bg-light);
  padding: 4rem 1.5rem 5rem;
}
.home-page article[b-pije9pzat9] {
  max-width: var(--container);
  margin: 0 auto;
}
.hero[b-pije9pzat9] {
  position: relative;
  overflow: hidden;
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 3rem;
  box-shadow: var(--shadow-md);
}
.hero[b-pije9pzat9]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.hero-content[b-pije9pzat9],
.hero-panel[b-pije9pzat9] {
  position: relative;
  z-index: 1;
}
.eyebrow[b-pije9pzat9] {
  display: inline-flex;
  color: var(--amber);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.hero-content[b-pije9pzat9] {
  max-width: 820px;
}
.hero-content h1[b-pije9pzat9] {
  margin: 0 0 1.5rem;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.18;
  font-weight: 800;
}
.hero-content p[b-pije9pzat9] {
  margin: 0 0 1rem;
  color: #cbd5e1;
  font-size: 1.12rem;
  line-height: 2;
}
.hero-panel[b-pije9pzat9] {
  align-self: end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.hero-panel span[b-pije9pzat9] {
  color: var(--amber);
  font-weight: 800;
}
.hero-panel strong[b-pije9pzat9] {
  display: block;
  margin: 1rem 0;
  font-size: 4rem;
  line-height: 1;
}
.hero-panel p[b-pije9pzat9] {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}
.section-heading[b-pije9pzat9] {
  max-width: 760px;
  margin: 5rem auto 3rem;
  text-align: center;
}
.section-heading span[b-pije9pzat9] {
  color: var(--amber);
  font-weight: 800;
}
.section-heading h2[b-pije9pzat9] {
  margin: 0.75rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  font-weight: 800;
}
.section-heading p[b-pije9pzat9] {
  margin: 0;
  color: var(--text-muted);
  line-height: 2;
  font-size: 1.05rem;
}
.cards-grid[b-pije9pzat9] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
[b-pije9pzat9] .business-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
[b-pije9pzat9] .business-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to left, #f59e0b, #d97706);
  opacity: 0;
  transition: var(--transition);
}
[b-pije9pzat9] .business-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
[b-pije9pzat9] .business-card h2 {
  margin: 0 0 1rem;
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 800;
}
[b-pije9pzat9] .business-card p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  flex: 1;
}
[b-pije9pzat9] .business-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
[b-pije9pzat9] .business-card .tags span {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}
[b-pije9pzat9] .business-card strong {
  color: var(--text-primary);
  font-weight: 800;
  transition: var(--transition);
}
[b-pije9pzat9] .business-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.35);
}
[b-pije9pzat9] .business-card:hover::before {
  opacity: 1;
}
[b-pije9pzat9] .business-card:hover .card-icon {
  background: var(--amber-soft);
  color: var(--amber);
  border-color: var(--amber-light);
}
[b-pije9pzat9] .business-card:hover strong,
[b-pije9pzat9] .business-card:hover h2 {
  color: var(--amber);
}
.featured-profile[b-pije9pzat9] {
  margin-top: 5rem;
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.featured-profile[b-pije9pzat9]::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(217, 119, 6, 0.16);
  filter: blur(80px);
  border-radius: 999px;
}
.featured-profile div[b-pije9pzat9] {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.featured-profile h2[b-pije9pzat9] {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}
.featured-profile p[b-pije9pzat9] {
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.05rem;
  margin: 0 0 2rem;
}
.featured-profile[b-pije9pzat9]  a {
  display: inline-flex;
  background: var(--amber);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  transition: var(--transition);
}
.featured-profile[b-pije9pzat9]  a:hover {
  transform: translateY(-3px);
  background: #b45309;
}
@media (max-width: 1050px) {
  .hero[b-pije9pzat9] {
    grid-template-columns: 1fr;
  }
  .cards-grid[b-pije9pzat9] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .home-page[b-pije9pzat9] {
    padding: 3rem 1rem 4rem;
  }
  .hero[b-pije9pzat9],
  .featured-profile[b-pije9pzat9] {
    padding: 3rem 1.5rem;
  }
  .cards-grid[b-pije9pzat9] {
    grid-template-columns: 1fr;
  }
}
/* /Pages/Leaders.razor.rz.scp.css */
:root[b-dg7uhldhit] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.listing-page[b-dg7uhldhit] {
  direction: rtl;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-light);
}
.listing-page article[b-dg7uhldhit] {
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero[b-dg7uhldhit] {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.page-hero[b-dg7uhldhit]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .eyebrow[b-dg7uhldhit],
.page-hero h1[b-dg7uhldhit],
.page-hero p[b-dg7uhldhit] {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow[b-dg7uhldhit] {
  color: var(--amber);
  font-weight: 800;
}
.page-hero h1[b-dg7uhldhit] {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}
.page-hero p[b-dg7uhldhit] {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.08rem;
}
.cards-grid[b-dg7uhldhit] {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
[b-dg7uhldhit] .leader-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
[b-dg7uhldhit] .leader-card span {
  color: var(--amber);
  font-weight: 800;
}
[b-dg7uhldhit] .leader-card h2 {
  margin: 1.5rem 0 1rem;
  color: var(--text-primary);
  font-size: 1.45rem;
  font-weight: 800;
}
[b-dg7uhldhit] .leader-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}
[b-dg7uhldhit] .leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.35);
}
[b-dg7uhldhit] .leader-card:hover h2 {
  color: var(--amber);
}
@media (max-width: 1000px) {
  .cards-grid[b-dg7uhldhit] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .listing-page[b-dg7uhldhit] {
    padding: 3rem 1rem 4rem;
  }
  .page-hero[b-dg7uhldhit] {
    padding: 3rem 1.5rem;
  }
  .cards-grid[b-dg7uhldhit] {
    grid-template-columns: 1fr;
  }
}
/* /Pages/MohammadHamsho.razor.rz.scp.css */
:root[b-rox7il2dyq] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.profile-page[b-rox7il2dyq] {
  direction: rtl;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-light);
}
.profile-page article[b-rox7il2dyq] {
  max-width: var(--container);
  margin: 0 auto;
}
.profile-hero[b-rox7il2dyq] {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.profile-hero[b-rox7il2dyq]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.profile-hero .eyebrow[b-rox7il2dyq],
.profile-hero h1[b-rox7il2dyq],
.profile-hero p[b-rox7il2dyq] {
  position: relative;
  z-index: 1;
}
.profile-hero .eyebrow[b-rox7il2dyq] {
  color: var(--amber);
  font-weight: 800;
}
.profile-hero h1[b-rox7il2dyq] {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.profile-hero p[b-rox7il2dyq] {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.1rem;
  margin: 0;
}
.profile-content[b-rox7il2dyq] {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.profile-number[b-rox7il2dyq] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  color: var(--amber);
  font-size: 4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-text[b-rox7il2dyq] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}
.profile-text p[b-rox7il2dyq] {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-size: 1.08rem;
}
.profile-text p:last-child[b-rox7il2dyq] {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .profile-content[b-rox7il2dyq] {
    grid-template-columns: 1fr;
  }
  .profile-hero[b-rox7il2dyq],
  .profile-text[b-rox7il2dyq] {
    padding: 3rem 1.5rem;
  }
}
/* /Pages/SaebNahhas.razor.rz.scp.css */
:root[b-5gqi23i7g7] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.profile-page[b-5gqi23i7g7] {
  direction: rtl;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-light);
}
.profile-page article[b-5gqi23i7g7] {
  max-width: var(--container);
  margin: 0 auto;
}
.profile-hero[b-5gqi23i7g7] {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.profile-hero[b-5gqi23i7g7]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.profile-hero .eyebrow[b-5gqi23i7g7],
.profile-hero h1[b-5gqi23i7g7],
.profile-hero p[b-5gqi23i7g7] {
  position: relative;
  z-index: 1;
}
.profile-hero .eyebrow[b-5gqi23i7g7] {
  color: var(--amber);
  font-weight: 800;
}
.profile-hero h1[b-5gqi23i7g7] {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.profile-hero p[b-5gqi23i7g7] {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.1rem;
  margin: 0;
}
.profile-content[b-5gqi23i7g7] {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.profile-number[b-5gqi23i7g7] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  color: var(--amber);
  font-size: 4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-text[b-5gqi23i7g7] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}
.profile-text p[b-5gqi23i7g7] {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-size: 1.08rem;
}
.profile-text p:last-child[b-5gqi23i7g7] {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .profile-content[b-5gqi23i7g7] {
    grid-template-columns: 1fr;
  }
  .profile-hero[b-5gqi23i7g7],
  .profile-text[b-5gqi23i7g7] {
    padding: 3rem 1.5rem;
  }
}
/* /Pages/SamerFoz.razor.rz.scp.css */
:root[b-bvwq65s05l] {
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --bg-soft: #f8fafc;
  --bg-navy: #0f172a;
  --bg-navy-light: #1e293b;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-soft: #fffbeb;
  --border: #e2e8f0;
  --font-sans: 'Tajawal', Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --transition: all 0.3s ease;
}
.profile-page[b-bvwq65s05l] {
  direction: rtl;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-light);
}
.profile-page article[b-bvwq65s05l] {
  max-width: var(--container);
  margin: 0 auto;
}
.profile-hero[b-bvwq65s05l] {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.profile-hero[b-bvwq65s05l]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.profile-hero .eyebrow[b-bvwq65s05l],
.profile-hero h1[b-bvwq65s05l],
.profile-hero p[b-bvwq65s05l] {
  position: relative;
  z-index: 1;
}
.profile-hero .eyebrow[b-bvwq65s05l] {
  color: var(--amber);
  font-weight: 800;
}
.profile-hero h1[b-bvwq65s05l] {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.profile-hero p[b-bvwq65s05l] {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.1rem;
  margin: 0;
}
.profile-content[b-bvwq65s05l] {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.profile-number[b-bvwq65s05l] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  color: var(--amber);
  font-size: 4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-text[b-bvwq65s05l] {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}
.profile-text p[b-bvwq65s05l] {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-size: 1.08rem;
}
.profile-text p:last-child[b-bvwq65s05l] {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .profile-content[b-bvwq65s05l] {
    grid-template-columns: 1fr;
  }
  .profile-hero[b-bvwq65s05l],
  .profile-text[b-bvwq65s05l] {
    padding: 3rem 1.5rem;
  }
}
