:root {
  --primary: #E8A8B8;
  --accent: #C97A8A;
  --bg: #FFFFFF;
  --bg-soft: #F7FBFF;
  --blue-light: #A9D6FF;
  --blue-soft: #EAF5FF;
  --text-main: #6B4C4C;
  --text-light: #A89A9A;

  /* Backward-compatible aliases used across the file */
  --bg-1: var(--bg);
  --bg-2: var(--bg-soft);
  --text: var(--text-main);
  --muted: var(--text-light);
  --accent-2: var(--blue-light);
  --card: rgba(255, 255, 255, 0.76);
  --stroke: rgba(107, 76, 76, 0.14);
  --shadow: 0 16px 34px rgba(107, 76, 76, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Tajawal", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(120deg, var(--bg-1), var(--bg-2));
  line-height: 1.7;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(169, 214, 255, 0.32), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(201, 122, 138, 0.08), transparent 30%);
  z-index: -2;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section-space {
  padding-block: 7rem;
}

.section-space-sm {
  padding-block: 5rem;
}

.glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 40;
  width: min(1160px, 92%);
  margin-inline: auto;
  border-radius: 1rem;
  border: 1px solid rgba(24, 36, 51, 0.12);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 28px rgba(16, 34, 56, 0.1);
}

.nav-grid {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #1a2635;
  background: linear-gradient(135deg, #f5dbad, var(--accent));
  box-shadow: 0 8px 18px rgba(199, 168, 110, 0.35);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(24, 36, 51, 0.08);
  border-radius: 999px;
  padding: 0.32rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover {
  color: #13253a;
  background: rgba(24, 36, 51, 0.08);
}

.nav-cta {
  text-decoration: none;
  color: #142536;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 214, 255, 0.9);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--blue-soft));
  box-shadow: 0 8px 16px rgba(123, 178, 226, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(123, 178, 226, 0.36);
}

.lang-toggle {
  border: 1px solid rgba(24, 36, 51, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #142536;
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(24, 36, 51, 0.14);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #fff;
  border-color: rgba(24, 36, 51, 0.22);
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 1px;
  background: #1a2635;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-backdrop {
  display: none;
}

body.nav-open,
html.nav-open {
  overflow: hidden;
}

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(245, 249, 255, 0.78), rgba(230, 238, 248, 0.56)),
    var(--hero-image, url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80"))
      center / cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(246, 248, 252, 0.95), rgba(246, 248, 252, 0.32));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy,
.story-content {
  text-align: start;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #1f5f93;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--blue-soft);
  border: 1.5px solid rgba(45, 142, 216, 0.78);
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2d8ed8;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  max-width: 16ch;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.42rem;
}

h2::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d8ed8, rgba(45, 142, 216, 0.52));
}

.lead {
  max-width: 54ch;
  color: #2d4158;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-light));
}

.btn-secondary {
  color: #1f3147;
  border-color: rgba(24, 36, 51, 0.25);
  background: rgba(255, 255, 255, 0.58);
}

.hero-panel {
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem;
}

.hero-panel h3 {
  margin-bottom: 1rem;
  color: #13253a;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.hero-panel strong {
  color: #162739;
  font-family: "Manrope", sans-serif;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
}

.metric-card h2 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 0.35rem;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 36, 51, 0.1);
  border-radius: 1rem;
  padding: 0.7rem;
  box-shadow: 0 10px 24px rgba(22, 36, 55, 0.09);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.soft-card-img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(24, 36, 51, 0.09);
}

.soft-card-body h3 {
  font-size: 1rem;
  margin: 0;
}

.soft-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service {
  padding: 1.3rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 36, 51, 0.1);
}

.service p {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.story-media {
  min-height: 350px;
  border-radius: 1rem;
  border: 1px solid rgba(24, 36, 51, 0.12);
  background:
    linear-gradient(130deg, rgba(241, 247, 255, 0.55), rgba(241, 247, 255, 0.12)),
    url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?auto=format&fit=crop&w=1200&q=80")
      center / cover no-repeat;
}

.cta-box {
  border-radius: 1rem;
  padding: 2.2rem;
  text-align: center;
}

.cta-box h2::after {
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

.products-hero {
  padding-top: 4rem;
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(247, 251, 255, 0.88), rgba(235, 246, 255, 0.62)),
    var(--hero-image, url("https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=1800&q=80"))
      center / cover no-repeat;
  z-index: -2;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.34));
}

.products-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 1.2rem;
}

.services-hero {
  padding-top: 4rem;
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(247, 251, 255, 0.88), rgba(235, 246, 255, 0.62)),
    var(--hero-image, url("https://images.unsplash.com/photo-1472851294608-062f824d29cc?auto=format&fit=crop&w=1800&q=80"))
      center / cover no-repeat;
  z-index: -2;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.34));
}

.contact-hero {
  padding-top: 4rem;
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(247, 251, 255, 0.88), rgba(235, 246, 255, 0.62)),
    var(--hero-image, url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80"))
      center / cover no-repeat;
  z-index: -2;
}

.products-hero h1 {
  max-width: 20ch;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 36, 51, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 34, 56, 0.08);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 0.9rem;
}

.product-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.03rem;
}

.product-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-section {
  padding-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 36, 51, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 34, 56, 0.08);
}

.gallery-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f4f8;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 0.75rem 0.9rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card-xl {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 36, 51, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 34, 56, 0.08);
}

.service-card-xl img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-card-xl div {
  padding: 1rem;
}

.service-card-xl p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-form {
  border-radius: 1rem;
  padding: 1rem;
}

.contact-form h3 {
  margin-bottom: 0.8rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.7rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
  color: #2f4560;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 36, 51, 0.16);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.map-card {
  border-radius: 1rem;
  padding: 1rem;
}

.map-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.cta-box p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.site-footer {
  border-top: 1px solid rgba(24, 36, 51, 0.12);
  padding: 2rem 0 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1.2rem;
  padding-bottom: 1.4rem;
}

.footer-brand h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.footer-brand p {
  margin: 0;
  color: #5e7288;
  max-width: 35ch;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
  color: #142536;
}

.footer-col a,
.footer-col p {
  margin: 0.28rem 0;
  color: #5e7288;
  text-decoration: none;
  display: block;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #1b324b;
}

.footer-bottom {
  border-top: 1px solid rgba(24, 36, 51, 0.12);
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #5e7288;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.14s;
}

.delay-2 {
  transition-delay: 0.28s;
}

.delay-3 {
  transition-delay: 0.42s;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-grid {
    grid-template-columns: 1fr;
  }

  .soft-card {
    grid-template-columns: 84px 1fr;
  }

  .soft-card-img {
    height: 82px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

/* لوحة الجوال + الهيدر: أقل من 768px */
@media (max-width: 768px) {
  /*
    backdrop-filter على الهيدر يحدّ موضع position:fixed للأبناء بحيث تُقاس
    بالهيدر وليس بالشاشة — اللوحة والخلفية تظهران مقطوعتين. نلغي الضباب على الجوال.
  */
  .site-header.glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .site-header {
    top: 0.45rem;
    border-radius: 0.85rem;
    width: min(1160px, calc(100% - 1rem));
    overflow: visible;
  }

  body.nav-open .site-header {
    z-index: 100;
  }

  .nav-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.55rem;
    min-height: 64px;
    gap: 0.65rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    flex-shrink: 0;
  }

  .brand {
    order: 1;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 3.25rem);
  }

  .brand-text strong {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .brand-text small {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 35, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-group {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 95;
    width: min(300px, min(86vw, 100% - 2rem));
    max-height: 100dvh;
    margin: 0;
    padding-top: max(4.5rem, calc(env(safe-area-inset-top, 0px) + 2.75rem));
    padding-inline: 1.15rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border-inline-start: 1px solid rgba(24, 36, 51, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* LTR: زر القائمة يمينًا → اللوحة تنزلق من يمين الشاشة */
  html[dir="ltr"] .nav-group {
    right: 0;
    left: auto;
    transform: translateX(100%);
    box-shadow: -12px 0 40px rgba(16, 34, 56, 0.18);
  }

  html[dir="ltr"] body.nav-open .nav-group {
    transform: translateX(0);
  }

  /* RTL: زر القائمة يسارًا → اللوحة تنزلق من يسار الشاشة */
  html[dir="rtl"] .nav-group {
    left: 0;
    right: auto;
    transform: translateX(-100%);
    box-shadow: 12px 0 40px rgba(16, 34, 56, 0.18);
  }

  html[dir="rtl"] body.nav-open .nav-group {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.15rem;
    border-radius: 0.85rem;
    padding: 0.4rem;
  }

  .nav-links a {
    padding: 0.72rem 0.85rem;
    text-align: start;
    border-radius: 0.65rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .lang-toggle {
    width: 100%;
    text-align: center;
  }

  body.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .metrics-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .soft-card {
    grid-template-columns: 1fr;
  }

  .soft-card-img {
    height: 150px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .section-space {
    padding-block: 5rem;
  }
}
