@font-face {
  font-family: 'IRAmir';
  src: url('/fonts/IRAmir.woff2') format('woff2'),
       url('/fonts/IRAmir.woff') format('woff'),
       url('/fonts/IRAmir.ttf') format('truetype');
  font-display: swap;
}

:root {
  --primary-navy: #0f172a;
  --secondary-navy: #1e293b;
  --accent-gold: #c59b27;
  --accent-gold-light: #e6c667;
  --accent-gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --gray-bg: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'IRAmir', Tahoma, sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  background-color: #f1f5f9;
  color: var(--text-main);
  line-height: 1.8;
}

/* Header & Navbar */
.main-navbar {
  background: var(--primary-navy);
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 2px solid var(--accent-gold);
}
.nav-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.15rem;
  color: #fff;
}
.badge-num {
  background: var(--accent-gold-gradient);
  color: #000;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}
.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.nav-links a:hover {
  color: var(--accent-gold-light);
}

/* Structure */
.wrapper { padding-bottom: 60px; }
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.margin-top { margin-top: 35px; }
.card-box {
  background: var(--card-bg);
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Hero Section */
.hero-banner {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 95px 20px 85px 20px;
  margin-bottom: 35px;
  position: relative;
  border-bottom: 4px solid var(--accent-gold);
}
.hero-badge {
  display: inline-block;
  background: rgba(197, 155, 39, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: 2.5rem;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-content h2 {
  color: var(--accent-gold-light);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.hero-degree {
  display: inline-block;
  font-size: 0.95rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 14px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 10px auto 30px auto;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--accent-gold-gradient);
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.45);
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn-blue {
  background: #0284c7;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.btn-blue:hover { background: #0369a1; transform: translateY(-2px); }
.btn-green {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.btn-green:hover { background: #15803d; transform: translateY(-2px); }

/* Titles */
.section-title {
  font-size: 1.45rem;
  color: var(--text-dark);
  border-right: 5px solid var(--accent-gold);
  padding-right: 14px;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
}
.text-center { text-align: center; }

/* Grid Features */
.duties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.duty-card {
  background: var(--gray-bg);
  border: 1px solid var(--border-color);
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s ease;
}
.duty-card:hover {
  background: #fff;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.duty-card .icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.duty-card h4 { margin: 0; font-size: 0.95rem; color: var(--text-dark); }

/* Services Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent-gold);
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.service-header .s-icon { font-size: 1.5rem; }
.service-card h4 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
}
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card li {
  padding: 7px 0;
  font-size: 0.9rem;
  position: relative;
  padding-right: 20px;
  color: var(--text-main);
}
.service-card li::before {
  content: "◆";
  position: absolute;
  right: 0;
  color: var(--accent-gold);
  font-size: 0.75rem;
  top: 8px;
}

/* Accordion FAQ */
.accordion-item {
  border-bottom: 1px solid var(--border-color);
}
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover { color: var(--accent-gold); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-content p { margin: 0 0 20px 0; color: #475569; font-size: 0.95rem; line-height: 1.9; }
.arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Contact Box */
.bg-dark {
  background: var(--primary-navy);
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
}
.text-white { color: #fff; }
.border-gold { border-right-color: var(--accent-gold); color: #fff; }
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.contact-details p {
  margin: 10px 0;
  font-size: 0.98rem;
  color: #e2e8f0;
}
.contact-details a {
  color: var(--accent-gold-light);
  text-decoration: none;
  font-weight: bold;
}
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.main-footer {
  background: #090d16;
  color: #64748b;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
  border-top: 1px solid #1e293b;
}
.main-footer p { margin: 0 0 5px 0; font-size: 0.9rem; }
.main-footer small { color: #475569; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content h2 { font-size: 1.15rem; }
  .nav-links { display: none; }
  .contact-wrapper { flex-direction: column; align-items: flex-start; }
}