* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fefefe;
  color: #222;
}
html {
  scroll-behavior: smooth;
}
.red {
  /* font-size: larger; */
  font-weight: bolder;
  color: red;
}
.blue {
  /* font-size: larger; */
  font-weight: bolder;
  color: #02010d;
}
.logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 80px;
  display: inline-block;
}
.footer-logo {
  color: white;
  background-color: white;
  height: fit-content;
}
a {
  text-decoration: none;
  color: yellow;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
 
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4b0082;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  display: flex;
  flex-wrap: wrap;
}

nav ul li a:hover {
  color: #4b0082;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
#closeMenu {
  font-weight: bolder;
  color: yellow;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.93);
  display: flex;
   flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: left 0.4s ease-in-out;
  z-index: 3000;
}

.mobile-nav.active {
  left: 0;
}

.hero {
  /*margin-top: 100px;*/
  position: relative;
  margin-top: 100px;
  height: 80vh;
  background: url("/18.JPG") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
  background-position: top;
  background-size: cover;
  width: 100vw;
  /*height: 100%;*/
  /*height: 100vh;*/
  /*min-height: 100vh;*/
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-attachment: scroll;*/
  text-align: center;
  /*padding: 0 1rem;*/
}
.dark-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero h1 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  position: relative;
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-btn {
  position: relative;
  background-color: #4b0082;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #360061;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .hero {
      /*height: 200vh;*/
    background-position: center;
    /*width: 100%;*/
  }
}

.anthem-section {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anthem-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.anthem-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: slideInDown 1s ease-out;
}

.anthem-subtext {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 2s ease-out;
}

.anthem-video {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
  height: 70vh;
}

.anthem-video:hover {
  transform: scale(1.02);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .anthem-title {
    font-size: 1.8rem;
  }

  .anthem-subtext {
    font-size: 1rem;
  }

  .anthem-video {
    width: 100%;
  }
}

.about-section {
  background-color: #f9f7ff;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeSlideIn 1.2s ease forwards;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-content {
  text-align: left;
  animation: fadeInText 1.3s ease-in-out;
}

.about-title {
  font-size: 2.8rem;
  color: #4b0082;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.about-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #4b0082;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.about-tagline {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.2rem;
}

/* Animations */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.anthem-download-section {
  background-color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  animation: fadeInUp 1s ease-in-out;
}

.download-container {
  max-width: 800px;
  margin: 0 auto;
}

.download-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4b0082;
  margin-bottom: 0.8rem;
}

.download-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.download-btn {
  background-color: #4b0082;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.download-btn:hover {
  background-color: #360061;
  transform: translateY(-3px);
}

/* Reuse from before */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.quick-stats-section {
  background-color: #f9f7ff;
  padding: 5rem 1rem;
  text-align: center;
  animation: fadeInUp 1.2s ease-in-out;
}
.stats1{
    color: #4b0082;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
}

.stat-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  animation: fadeSlideIn 1.2s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4b0082;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.05rem;
  color: #444;
}

/* Animations */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.events-slider-section {
  background-color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  color: #4b0082;
  font-weight: 700;
  margin-bottom: 2rem;
}

.slider-container {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.event-slide {
  display: flex;
  gap: 2rem;
  animation: slideLeft 15s infinite linear;
}

.event-card {
  background-color: #f9f7ff;
  border-radius: 20px;
  padding: 2rem;
  min-width: 300px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.event-card:hover {
  transform: scale(1.03);
}

.event-title {
  font-size: 1.5rem;
  color: #360061;
  margin-bottom: 0.5rem;
}

.event-date {
  font-weight: 600;
  color: #555;
  margin-bottom: 1rem;
}

.event-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .event-slide {
    flex-direction: column;
    animation: none;
  }

  .event-card {
    margin-bottom: 2rem;
    min-width: 100%;
  }
}
/* Section: Mission, Values, Principles */
.mission-values-section {
  background-color: #f9f7ff;
  padding: 5rem 1.5rem;
  animation: fadeSlideIn 1.2s ease;
}

.mvp-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.mvp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mvp-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  text-align: left;
}
/* .van {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  text-align: left;
  width: 100%;
} */

.mvp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.mvp-card h3 {
  color: #4b0082;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.mvp-card p,
.mvp-card ul {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.mvp-card ul {
  list-style: none;
  padding-left: 0;
}

.mvp-card ul li {
  margin-bottom: 0.5rem;
}

/* Section: Constitution Download */
.constitution-download-section {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

.constitution-container {
  max-width: 700px;
  margin: auto;
}

.constitution-container h3 {
  font-size: 2rem;
  color: #360061;
  margin-bottom: 0.8rem;
}

.constitution-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.download-btn {
  background-color: #4b0082;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-btn:hover {
  background-color: #360061;
  transform: translateY(-3px);
}
.mission-values-section,
.constitution-download-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.mission-values-section.visible,
.constitution-download-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.cta-banner-section {
  background: linear-gradient(to right, #4b0082, #6a0dad);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: bannerFadeIn 1.2s ease;
}

.cta-banner-content {
  max-width: 900px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.cta-banner-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: rotateGlow 20s linear infinite;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #eaeaea;
}

.cta-banner-btn {
  background-color: #fff;
  color: #4b0082;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

.cta-banner-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-3px);
}

.carousel-nav {
}

.carousel-banner {
  position: relative;
  /* background: #6a0dad; */
  padding: 2rem 0;
  overflow: hidden;
  height: fit-content;
  border-radius: 15px;
}
.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  height: fit-content;

  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.carousel-image {
  min-width: 100%;
  max-height: 500px;
  /* height: 100%;
  width: 100%; */
  object-fit: cover;
  cursor: pointer;
}

.carousel-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-dot.active {
  background: #fff;
}

.carousel-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.carousel-modal img.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff4081;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .carousel-image {
    width: 100%;
    max-height: 350px;
  }
}

/* </style>
  <div class="carousel-wrapper">
    <div class="carousel-track">
      <img src="images/banner1.jpg" class="carousel-image" alt="Banner 1">
      <img src="images/banner2.jpg" class="carousel-image" alt="Banner 2">
      <img src="images/banner3.jpg" class="carousel-image" alt="Banner 3">
    </div>
    <div class="carousel-nav">
      <span class="nav-dot active" data-index="0"></span>
      <span class="nav-dot" data-index="1"></span>
      <span class="nav-dot" data-index="2"></span>
    </div>
  </div>
  <div class="carousel-modal" id="carouselModal">
    <span class="modal-close" id="closeModal">&times;</span>
    <img src="" alt="Preview" class="modal-content" id="modalImg">
  </div>
</section> */

/* Animations */
@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.why-join-section {
  background: #fefefe;
  padding: 5rem 1.5rem;
  animation: fadeInUp 1.2s ease;
  text-align: center;
}

.why-join-container {
  max-width: 1100px;
  margin: auto;
}

.why-join-intro {
  font-size: 1.2rem;
  color: #555;
  margin: 1rem auto 3rem;
  max-width: 750px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-card {
  background-color: #f9f7ff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  animation: fadeInCard 1.2s ease forwards;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
  font-size: 1.5rem;
  color: #4b0082;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.join-btn {
  background-color: #4b0082;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #360061;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceIn 1s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.noble-footer {
  background-color: #1a1a2e;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  font-family: "Poppins", sans-serif;
  animation: fadeInUp 1.2s ease;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-style: italic;
  color: #bbb;
  font-size: 1rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social .social-icons a img {
  width: 25px;
  transition: transform 0.3s ease;
}

.footer-social .social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: #aaa;
}
.contact-section {
  background-color: #f9f7ff;
  padding: 5rem 1.5rem;
  animation: fadeInUp 1.2s ease;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-subtext {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeSlideIn 1s ease;
}

.form-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-group input,
.form-group select,
.form-group textarea {
  flex: 1;
  min-width: 250px;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4b0082;
}

.full-width {
  flex-direction: column;
}

textarea {
  resize: none;
}

.contact-form .cta-btn {
  align-self: center;
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }
}

.image1 {
  width: 80%;
}

.social-icon.tiktok {
  color: #000;
  font-size: 24px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon.tiktok:hover {
  background: #ff0050;
  color: #fff;
}
ol li {
  margin-bottom: 7px;
  /* background-color: #6a0dad;
  color: white; */
  background-color: rgb(247, 243, 243);
  border-radius: 1px 12px;
  padding: 10px;
}
ol {
}
