:root {
  --ink: #15120d;
  --paper: #fff8ec;
  --muted: #6f655b;
  --gold: #f5b71b;
  --gold-deep: #c27b0a;
  --amber: #7b3f16;
  --teal: #163c3b;
  --cream: #fff2d2;
  --line: rgba(21, 18, 13, 0.12);
  --shadow: 0 26px 60px rgba(49, 27, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #160f0a 0 18rem, #fff7ea 18rem 100%);
}

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

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

.hero {
  min-height: auto;
  color: #fff;
  position: relative;
  isolation: isolate;
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 13rem, rgba(0, 0, 0, 0) calc(100vw * 0.47), rgba(0, 0, 0, 0.92) calc(100vw * 0.52)),
    url("assets/hero.png") top center / contain no-repeat,
    #060403;
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.apna-back-link {
  width: max-content;
  max-width: 100%;
  margin: 0 0 1rem auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(245, 183, 27, 0.5);
  border-radius: 999px;
  color: #15120d;
  background: linear-gradient(180deg, #ffd76a, var(--gold));
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 3;
}

.apna-back-link img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fffaf0;
}

.apna-back-link:hover,
.apna-back-link:focus-visible {
  transform: translateY(-2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a {
  padding: 0.6rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.3rem auto;
  background: #fff;
}

.hero-panel {
  width: min(720px, 100%);
  margin: clamp(21rem, 49vw, 34rem) auto 0;
  transform: none;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 900;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.52);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}

.button {
  min-width: 10.6rem;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.button-primary {
  background: linear-gradient(180deg, #ffd057, var(--gold));
  color: #17100a;
}

.button-secondary {
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.hero-actions .button-secondary {
  display: none;
}

.link-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.hero-highlights {
  width: calc(100% + clamp(2rem, 6vw, 4rem));
  margin: 3rem calc(clamp(1rem, 3vw, 2rem) * -1) 0;
  padding: 1.2rem clamp(1rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: rgba(15, 12, 8, 0.82);
  border-top: 1px solid rgba(245, 183, 27, 0.25);
  backdrop-filter: blur(10px);
}

.hero-highlights article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.9rem;
  align-items: start;
  padding: 0.35rem;
}

.hero-highlights span {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  grid-row: span 2;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.hero-highlights strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-highlights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1rem, 3vw, 1.5rem);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  color: #201710;
}

.section-heading h2,
.story-copy h2,
.town-copy h2,
.location h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.16;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.program-grid article,
.story-copy,
.town-points article,
.location {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.program-grid article {
  min-height: 19rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 220, 0.94)),
    var(--paper);
}

.program-grid article:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 249, 244, 0.9)),
    var(--paper);
}

.program-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.program-grid span {
  display: block;
  margin: 1.15rem 1.25rem 0;
  color: var(--gold-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.program-grid h3 {
  margin: 0.8rem 1.25rem 1.25rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.32;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #1a120a;
}

.image-panel img {
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.story-copy {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  background: #123b3a;
  color: #fff;
}

.story-copy h2 {
  color: #fff6db;
}

.mentor-photo {
  width: min(220px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  border: 2px solid rgba(245, 183, 27, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.story-copy p,
.town-copy p,
.location p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.quote {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quote p {
  margin: 0 0 0.4rem;
  color: #fff;
  font-family: "Great Vibes", cursive;
  font-size: 2.25rem;
  line-height: 1.15;
}

.quote strong {
  color: var(--gold);
}

.town {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.town-points {
  display: grid;
  gap: 1rem;
}

.town-points article {
  padding: 1.25rem;
  border-radius: 8px;
  background: #fff;
}

.town-points strong,
.town-points span {
  display: block;
}

.town-points strong {
  margin-bottom: 0.35rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.2rem;
}

.town-points span {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.gallery-header .section-heading {
  margin-bottom: 0;
}

.gallery-controls {
  display: flex;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.gallery-button {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(21, 18, 13, 0.16);
  border-radius: 8px;
  background: #15120d;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  transform: translateY(-2px);
  background: #2a1b0f;
}

.gallery-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.gallery-carousel {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-track,
.video-track {
  display: flex;
  gap: 1rem;
  transition: transform 300ms ease;
}

.gallery-item {
  margin: 0;
  flex: 0 0 calc((100% - 2rem) / 3);
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #160f0a;
  border: 1px solid rgba(21, 18, 13, 0.1);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.video-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.video-carousel {
  overflow: hidden;
  border-radius: 8px;
}

.video-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 260px;
  display: block;
  border-radius: 8px;
  color: #fff;
  background: #15120d;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 160ms ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-2px);
}

.video-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

.video-play {
  width: 4.25rem;
  height: 4.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #15120d;
  font-size: 1.35rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.video-title {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

.video-card strong {
  max-width: 12rem;
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.05;
}

.video-card small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.video-modal-panel {
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.video-modal-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  width: 2.75rem;
  height: 2.75rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.location {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 239, 202, 0.92)),
    var(--paper);
}

.location h2 {
  max-width: 720px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.18;
  color: #1d1710;
}

@media (max-width: 720px) {
  .section-heading h2,
  .story-copy h2,
  .town-copy h2 {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }
}

.location p {
  max-width: 760px;
  font-size: 0.98rem;
}

.map-frame {
  display: block;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(21, 18, 13, 0.14);
  box-shadow: 0 18px 38px rgba(49, 27, 10, 0.12);
  background: #e7dfd2;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  pointer-events: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 1.25rem;
  align-items: center;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.contact-section h2 {
  max-width: 680px;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.16;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-card {
  min-height: 8.4rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(245, 183, 27, 0.42), transparent 28%),
    linear-gradient(135deg, #123b3a, #15120d);
  box-shadow: var(--shadow);
}

.whatsapp-card {
  background:
    radial-gradient(circle at 80% 12%, rgba(245, 183, 27, 0.34), transparent 28%),
    linear-gradient(135deg, #1f7a4f, #123b3a 58%, #15120d);
}

.contact-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.contact-card strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.footer {
  padding: 2rem 1rem 2.5rem;
  background: #120d09;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.footer p {
  margin: 0.25rem 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.footer strong {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.03em;
  color: #fff;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.powered-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  vertical-align: middle;
}

.powered-link img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.powered-name {
  border-bottom: 1px solid rgba(245, 183, 27, 0.55);
}

.footer .social-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.footer .social-follow .social-icon {
  margin: 0 0.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.footer .social-follow .social-icon i {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  font-size: 0.9rem;
  -webkit-text-fill-color: #fff;
}

.footer .social-follow .facebook i {
  background: #1877f2;
}

.footer .social-follow .instagram i {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%,
      #fd5949 45%, #d6249f 60%,
      #285aeb 90%);
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

@media (max-width: 980px) {
  .hero {
    background-size: contain;
    background-position: top center;
  }

  .hero-panel {
    margin-left: 0;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-highlights,
  .program-grid,
  .split,
  .town,
  .location,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-copy {
    text-align: center;
  }

  .mentor-photo {
    width: min(260px, 100%);
    margin: 0 auto;
    margin-bottom: 1.4rem;
  }

  .gallery-item {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .video-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .image-panel img {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 4rem;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(17, 12, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 1rem;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.28) 10rem, rgba(0, 0, 0, 0) calc(100vw * 0.72), rgba(0, 0, 0, 0.94) calc(100vw * 0.84)),
      url("assets/hero.png") center 8rem / contain no-repeat,
      #060403;
  }

  .hero-panel {
    margin-top: clamp(20rem, 82vw, 29rem);
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-highlights {
    margin-top: 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-grid article {
    min-height: auto;
  }

  .gallery-header {
    align-items: start;
    flex-direction: column;
  }

  .gallery-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .gallery-item {
    flex-basis: 100%;
    height: 240px;
  }

  .video-card {
    flex-basis: 100%;
    min-height: 240px;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 26px;
    text-decoration: none;
}

/* Facebook brand color */
.facebook i {
    color: #1877f2 !important;
}

/* Instagram gradient */
.instagram i {
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%, #fdf497 5%,
        #fd5949 45%, #d6249f 60%,
        #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Hover */
.social-icon:hover {
    transform: scale(1.15);
}
.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Card Style */
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    background: #222;
    transition: 0.3s;
    min-width: 220px;
}

.contact-card span {
    font-size: 13px;
    opacity: 0.8;
}

.contact-card strong {
    display: block;
    font-size: 16px;
}

/* Icons */
.contact-card i {
    font-size: 20px;
}

/* Phone */
.call-card {
    background: #1565C0;
}

/* WhatsApp card background */
.whatsapp-card {
    background: #25D366;
}

/* Force icon color */
.whatsapp-card i {
    color: white !important;
    font-size: 22px;
}

/* Layout improvement */
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

/* Hover */
.contact-card:hover {
    transform: translateY(-4px);
}
