/* ===========================================================
   Noble Steel Corporation — Site Stylesheet
   =========================================================== */

:root{
  --navy: #10161d;
  --navy-2: #171f28;
  --steel: #2c3a48;
  --steel-light: #4a5c6e;
  --accent: #d9531e;
  --accent-dark: #b64315;
  --ink: #1b232b;
  --paper: #f4f5f6;
  --paper-2: #eaecee;
  --line: #dde1e4;
  --white: #ffffff;
  --muted: #6b7683;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(16,22,29,0.12);
  --maxw: 1180px;
  --serif-weight: 800;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

ul{ margin: 0; padding: 0; list-style: none; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4{
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}

p{ margin: 0 0 16px; color: #3a444d; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 3px;
  background: var(--accent);
  display: inline-block;
  border-radius: 2px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(217,83,30,0.32);
}
.btn-primary:hover{ background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width: 100%; justify-content: center; }

/* ---------- Header ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}
.brand-mark{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong{
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-text span{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa7b3;
  white-space: nowrap;
}

nav.main-nav ul{ display: flex; gap: 6px; align-items: center; }
nav.main-nav a{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cfd6dc;
  transition: background .15s ease, color .15s ease;
}
nav.main-nav a:hover{ color: var(--white); background: rgba(255,255,255,0.06); }
nav.main-nav a.active{ color: var(--white); background: rgba(217,83,30,0.18); }
nav.main-nav a.cta{
  background: var(--accent);
  color: var(--white);
  margin-left: 8px;
}
nav.main-nav a.cta:hover{ background: var(--accent-dark); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex: none;
  margin: -6px 0 -6px -6px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 138px 0 110px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9,13,18,0.94) 0%, rgba(9,13,18,0.82) 38%, rgba(9,13,18,0.42) 72%, rgba(9,13,18,0.30) 100%),
    linear-gradient(0deg, rgba(9,13,18,0.55), transparent 45%);
}
.hero::after{
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(217,83,30,0.10);
  border-radius: 50%;
}
.hero-inner{ position: relative; max-width: 680px; }
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 7px 16px 7px 8px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e7ebee;
  margin-bottom: 22px;
}
.hero-badge .dot{
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.hero h1{
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero p.lead{
  color: #d7dde2;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 92px 0 78px;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,13,18,0.94) 0%, rgba(9,13,18,0.86) 45%, rgba(9,13,18,0.55) 100%);
}
.page-hero .container{ position: relative; }
.page-hero h1{ color: var(--white); margin-bottom: 10px; font-size: clamp(28px, 3.6vw, 40px); }
.page-hero p{ color: #c4ccd3; max-width: 620px; margin-bottom: 0; font-size: 16.5px; }
.breadcrumb{
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #93a0ac;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.breadcrumb a:hover{ color: var(--white); }
.breadcrumb .sep{ margin: 0 6px; color: #56626d; }

/* ---------- Sections ---------- */
section{ padding: 76px 0; }
.section-alt{ background: var(--white); }
.section-tight{ padding: 60px 0; }

.section-head{ max-width: 660px; margin-bottom: 44px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ font-size: 16.5px; }

/* ---------- Grids / Cards ---------- */
.grid{ display: grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon{
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(217,83,30,0.10);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex: none;
}
.card-icon svg{ width: 24px; height: 24px; }
.card h3{ font-size: 18px; margin-bottom: 8px; }
.card p{ font-size: 14.5px; margin-bottom: 0; color: var(--muted); }

/* Product cards */
.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.product-visual{
  height: 170px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.product-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-visual img{ transform: scale(1.08); }
.product-visual::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(9,13,18,0.05) 30%, rgba(9,13,18,0.65) 100%);
}
.product-tag{
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(217,83,30,0.92);
  padding: 5px 12px;
  border-radius: 20px;
}
.product-body{ padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-body h3{ font-size: 19px; margin-bottom: 8px; }
.product-body p{ font-size: 14.5px; color: var(--muted); margin-bottom: 0; flex: 1; }

/* Why choose / stats strip */
.stats-strip{
  background: var(--navy);
  color: var(--white);
  padding: 46px 0;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num{
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label{ font-size: 13.5px; color: #aeb8c1; letter-spacing: 0.03em; }

.stats-strip.photo{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 64px 0;
}
.stats-strip.photo::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,13,18,0.93) 0%, rgba(9,13,18,0.82) 60%, rgba(9,13,18,0.72) 100%);
}
.stats-strip.photo .container{ position: relative; }

/* CTA band */
.cta-band{
  position: relative;
  background: linear-gradient(120deg, var(--navy), var(--steel));
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 78px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band.photo::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,13,18,0.80) 0%, rgba(9,13,18,0.90) 100%);
}
.cta-band .container{ position: relative; }
.cta-band h2{ color: var(--white); margin-bottom: 12px; }
.cta-band p{ color: #c4ccd3; max-width: 520px; margin: 0 auto 30px; }

/* ---------- About page specifics ---------- */
.two-col{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.two-col > *{ min-width: 0; }
.panel{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.panel + .panel{ margin-top: 24px; }
.panel h3{ font-size: 18px; display: flex; align-items: center; gap: 10px; }
.panel h3::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.timeline-figure{
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy), var(--steel) 120%);
  color: var(--white);
  padding: 34px;
  position: relative;
}
.timeline-figure .big-year{
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.timeline-figure p{ color: #c9d1d8; margin-top: 10px; }

/* ---------- Image frame (photo with offset accent border) ---------- */
.image-frame{
  position: relative;
  isolation: isolate;
}
.image-frame::before{
  content: "";
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.image-frame img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-frame .float-badge{
  position: absolute;
  left: 24px;
  bottom: -22px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: 0 14px 28px rgba(16,22,29,0.28);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.image-frame .float-badge .num{
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.image-frame .float-badge .cap{
  font-size: 12px;
  color: #c4ccd3;
  line-height: 1.3;
  max-width: 100px;
}

/* ---------- Photo band (full-bleed statement w/ image) ---------- */
.photo-band{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--white);
}
.photo-band::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,13,18,0.90) 0%, rgba(9,13,18,0.72) 55%, rgba(9,13,18,0.55) 100%);
}
.photo-band .container{ position: relative; }
.photo-band-inner{ max-width: 620px; }
.photo-band .eyebrow{ color: #f0a583; }
.photo-band .eyebrow::before{ background: #f0a583; }
.photo-band h2{ color: var(--white); }
.photo-band p{ color: #d7dde2; font-size: 16.5px; margin-bottom: 0; }

.check-list li{
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #3a444d;
}
.check-list li:last-child{ border-bottom: none; }
.check-list .tick{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(217,83,30,0.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  margin-top: 1px;
}
.check-list .tick svg{ width: 12px; height: 12px; }

.industries-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-chip{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ---------- Contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}
.contact-grid > *{ min-width: 0; }
.info-card{
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.info-card h3{ color: var(--white); font-size: 18px; }
.info-row{
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.info-row:last-child{ border-bottom: none; }
.info-row .ic{
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(217,83,30,0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.info-row .ic svg{ width: 18px; height: 18px; }
.info-row .label{
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93a0ac;
  margin-bottom: 3px;
}
.info-row .value{ font-size: 14.5px; color: #e7eaed; line-height: 1.5; overflow-wrap: break-word; }
.info-row .value a{ color: #e7eaed; transition: color .15s ease; }
.info-row .value a:hover{ color: var(--accent); text-decoration: underline; }

.hours-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-top: 22px;
}
.hours-row{
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.hours-row:last-child{ border-bottom: none; }
.hours-row span:first-child{ color: var(--navy); font-weight: 600; }
.hours-row span:last-child{ color: var(--muted); }

.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field{ display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label{
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.field input, .field select, .field textarea{
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,83,30,0.14);
  background: var(--white);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success{
  display: none;
  align-items: center;
  gap: 12px;
  background: #eef8ef;
  border: 1px solid #bfe3c4;
  color: #235c2d;
  padding: 16px 18px;
  border-radius: 6px;
  font-size: 14.5px;
  margin-bottom: 20px;
}
.form-success.show{ display: flex; }

.map-note{
  position: relative;
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 46px 28px;
  text-align: center;
  color: var(--white);
  font-size: 14.5px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-note::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,13,18,0.86), rgba(9,13,18,0.62));
}
.map-note-inner{ position: relative; max-width: 380px; }
.map-note-inner strong{ display: block; font-family: 'Poppins', sans-serif; font-size: 17px; margin-bottom: 8px; color: var(--white); }
.map-note-inner span{ color: #d7dde2; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--navy);
  color: #c4ccd3;
  padding: 56px 0 24px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p{ color: #93a0ac; font-size: 14px; margin-top: 14px; }
footer h4{
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul li{ margin-bottom: 11px; }
footer ul a{ color: #aeb8c1; font-size: 14.5px; transition: color .15s ease; }
footer ul a:hover{ color: var(--accent); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 13px;
  color: #7c8894;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid{ grid-template-columns: 1fr; }
  .two-col{ gap: 46px; }
  .two-col .image-frame{ order: -1; margin-bottom: 10px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .industries-list{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px){
  .nav-toggle{ display: flex; }
  nav.main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: none;
    padding: 10px 24px 20px;
  }
  nav.main-nav.open{ display: block; }
  nav.main-nav ul{ flex-direction: column; align-items: stretch; gap: 4px; }
  nav.main-nav a{ padding: 12px 10px; }
  nav.main-nav a.cta{ margin-left: 0; text-align: center; margin-top: 6px; }
}

@media (max-width: 760px){
  .hero{ padding: 92px 0 60px; text-align: left; }
  .hero-actions{ flex-direction: column; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .industries-list{ grid-template-columns: 1fr 1fr; }
  section{ padding: 56px 0; }
  .image-frame img{ min-height: 240px; }
  .image-frame .float-badge{ left: 16px; bottom: -18px; padding: 12px 16px; }
  .image-frame .float-badge .num{ font-size: 24px; }
  .photo-band{ padding: 56px 0; }
  .stats-strip.photo{ padding: 48px 0; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .hero-badge{ font-size: 11.5px; padding: 6px 14px 6px 6px; }
}

@media (max-width: 420px){
  .brand-mark{ width: 36px; height: 36px; }
  .brand-text strong{ font-size: 14.5px; }
  .brand-text span{ font-size: 9.5px; letter-spacing: 0.08em; }
  .hero-badge span.dot{ display: none; }
  .hero-badge{ padding: 7px 14px; }
}
