:root {
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --primary: 217 91% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 180 70% 45%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 20% 45%;
  --border: 214 32% 91%;
  --navy: 222 47% 11%;
  --navy-light: 220 30% 20%;
  --teal: 180 70% 45%;
  --teal-light: 180 60% 55%;
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg,
      hsl(217 91% 45%) 0%,
      hsl(180 70% 45%) 100%);
  --shadow-sm: 0 2px 8px -2px hsla(222, 47%, 11%, 0.08);
  --shadow-md: 0 8px 24px -8px hsla(222, 47%, 11%, 0.12);
  --shadow-lg: 0 16px 48px -12px hsla(222, 47%, 11%, 0.18);
  --shadow-card: 0 4px 20px -4px hsla(222, 47%, 11%, 0.1);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.committee-header .section-heading {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(180, 70%, 45%, 0.1);
  color: hsl(var(--teal));
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.committee-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--navy));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .committee-header .section-title {
    font-size: 3rem;
  }
}

.new-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      hsl(var(--navy)),
      hsla(222, 47%, 11%, 0.95),
      hsla(222, 47%, 11%, 0.8));
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      hsla(222, 47%, 11%, 0.5),
      transparent,
      transparent);
  z-index: 1;
}

.hero-floating {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-floating-orb-1 {
  top: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: hsla(180, 70%, 45%, 0.1);
  animation: float 8s ease-in-out infinite;
}

.hero-floating-orb-2 {
  bottom: 33%;
  left: 33%;
  width: 24rem;
  height: 24rem;
  background: hsla(217, 91%, 45%, 0.1);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(180, 70%, 45%, 0.2);
  color: hsl(var(--teal));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid hsla(180, 70%, 45%, 0.3);
}

/* Hero Slider Navigation */
.hero-slider-nav {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider-dots {
  display: flex;
  gap: 0.75rem;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.hero-slider-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-slider-dot.active {
  background: hsl(var(--teal));
  border-color: hsl(var(--teal));
  transform: scale(1.2);
}

.hero-slider-dot.active::before {
  border-color: hsla(180, 70%, 45%, 0.4);
}

.hero-slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  pointer-events: none;
}

.hero-slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  color: white;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.hero-slider-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-slider-progress {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hero-slider-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s linear;
}

/* Hero Content Slides */
.hero-content-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hero-content-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-content-slide.active .hero-badge {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-content-slide.active h1 {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.hero-content-slide.active .hero-description {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero-content-slide.active .hero-buttons {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

.hero-content-slide.active .hero-info-cards {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

.hero-content {
  position: relative;
  min-height: 400px;
}

.new-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@media (min-width: 768px) {
  .new-hero h1 {
    font-size: 2rem !important;
  }
}

@media (min-width: 1024px) {
  .new-hero h1 {
    font-size: 4.5rem;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-buttons .btn-primary svg {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.hero-buttons .btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--teal));
}

.hero-info-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  /* background: linear-gradient(to top, hsl(var(--background)), transparent); */
  background: var(--gradient-primary);
  z-index: 10;
}

.hero-bottom-gradient h2 {
  line-height: 44px;
  color: #fff !important;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 600;
}

.hero-bottom-gradient h2.blink-soft {
  animation: blinker 3s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-primary);
  border-radius: 9999px;
  box-shadow: 0 4px 20px hsla(217, 91%, 45%, 0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 8px 30px hsla(217, 91%, 45%, 0.45);
}

.cal::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 90%;
  height: 100%;
  background: var(--gradient-primary) !important;
  content: "";
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg,
      hsla(210, 40%, 96%, 0.3),
      hsl(var(--background)),
      hsla(210, 40%, 96%, 0.3));
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonials-bg-orb-1 {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: hsla(180, 70%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonials-bg-orb-2 {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 20rem;
  height: 20rem;
  background: hsla(217, 91%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-card {
  max-width: 64rem;
  margin: 0 auto 3rem;
}

.testimonial-card-inner {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.testimonial-image-section {
  position: relative;
  height: 16rem;
}

@media (min-width: 1024px) {
  .testimonial-image-section {
    height: auto;
  }
}

.testimonial-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      hsla(222, 47%, 11%, 0.6),
      transparent,
      transparent);
}

@media (min-width: 1024px) {
  .testimonial-image-overlay {
    background: linear-gradient(to right,
        hsla(222, 47%, 11%, 0.6),
        transparent,
        transparent);
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(180, 70%, 45%, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.testimonial-content-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .testimonial-content-section {
    padding: 3rem;
  }
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-quote {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-line {
  width: 0.25rem;
  height: 3rem;
  background: linear-gradient(to bottom, hsl(var(--teal)), hsl(var(--primary)));
  border-radius: 9999px;
}

.testimonial-author-name {
  font-weight: 700;
  color: hsl(var(--navy));
  font-size: 1.125rem;
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-nav-btn.prev {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.testimonial-nav-btn.prev:hover {
  background: hsl(var(--teal));
  color: white;
}

.testimonial-nav-btn.next {
  background: hsl(var(--navy));
  color: white;
}

.testimonial-nav-btn.next:hover {
  background: hsl(var(--teal));
}

.testimonial-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-thumbnails {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-thumbnail {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.testimonial-thumbnail.active {
  outline: 4px solid hsl(var(--teal));
  outline-offset: 2px;
  transform: scale(1.1);
}

.testimonial-thumbnail:not(.active) {
  opacity: 0.5;
}

.testimonial-thumbnail:not(.active):hover {
  opacity: 1;
}

.testimonial-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== COMMITTEE ==================== */
.committee {
  padding: 6rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.committee-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.committee-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg,
      hsla(180, 70%, 45%, 0.03),
      hsla(217, 91%, 45%, 0.03));
  border-radius: 50%;
  filter: blur(60px);
}

.committee-header {
  text-align: center;
  margin-bottom: 4rem;
}

.committee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .committee-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.committee-member {
  position: relative;
}

.committee-member-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg,
      hsl(var(--muted)),
      hsla(210, 40%, 96%, 0.5));
}

.committee-member-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.committee-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.committee-member:hover .committee-member-image img {
  transform: scale(1.1);
}

.committee-member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      hsl(var(--navy)),
      hsla(222, 47%, 11%, 0.2),
      transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}

.committee-member:hover .committee-member-overlay {
  opacity: 0.8;
}

.committee-member-social {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(2.5rem);
  opacity: 0;
  transition: all 0.5s ease;
}

.committee-member:hover .committee-member-social {
  transform: translateY(0);
  opacity: 1;
}

.committee-member-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.committee-member-social-link:hover {
  background: hsl(var(--teal));
  border-color: hsl(var(--teal));
}

.committee-member-social-link svg {
  width: 1rem;
  height: 1rem;
}

.committee-member-role-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: hsla(180, 70%, 45%, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.committee-member-border {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
}

.committee-member:hover .committee-member-border {
  border-color: hsla(180, 70%, 45%, 0.5);
}

.committee-member-info {
  text-align: center;
}

.committee-member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--navy));
  transition: color 0.3s;
}

.committee-member:hover .committee-member-name {
  color: hsl(var(--teal));
}

.committee-member-title {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.committee-slider-wrapper {
  position: relative;
  margin-top: 3rem;
}

.committee-slider .committee-member {
  min-width: 280px;
  flex-shrink: 0;
}

/* arrows */
.committee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  cursor: pointer;
  z-index: 10;
}

.committee-arrow.prev {
  left: -55px;
}

.committee-arrow.next {
  right: -55px;
}

.committee-arrow:hover {
  background: rgba(0, 0, 0, 0.15);
}

.committee-slider-wrapper {
  position: relative;
  margin-top: 3rem;
}

.committee-member {
  min-width: 280px;
  flex-shrink: 0;
}

/* arrows */
.committee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.committee-arrow.prev {
  left: -55px;
}

.committee-arrow.next {
  right: -55px;
}

.committee-arrow:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* mobile safe */
@media (max-width: 768px) {
  .committee-arrow.prev {
    left: -20px;
  }

  .committee-arrow.next {
    right: -20px;
  }

  .new-hero {
    align-items: flex-start;
    padding-top: 30px !important;
  }

  .committee-member-role-badge {
    top: 0.5rem !important;
    left: 0.5rem !important;
  }

  .testimonial-quote {
    margin-bottom: 0.5rem !important;
  }

  .testimonial-nav {
    bottom: 10px !important;
    right: 15px !important;
  }

  .testimonial-nav-btn {
    width: 2rem !important;
    font-size: 30px !important;
    height: 2rem !important;
    border-radius: 8px !important;
  }

  .new-hero h1 {
    font-size: 2rem !important;
  }

  .hero-slider-nav {
    bottom: 4rem !important;
  }

  .hero-slider-progress {
    bottom: 7rem !important;
  }

  .new-hero .btn-primary {
    padding: 1rem 1rem !important;
    font-size: 14px !important;
  }
}

/* viewport */
.committee-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* slider */
.committee-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* cards */
.committee-slider .committee-member {
  flex: 0 0 280px;
  max-width: 280px;
}

/* viewport - show exactly 4 cards */
.committee-slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: calc(280px * 4 + 2rem * 3);
  /* 4 cards + 3 gaps */
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .committee-slider-viewport {
    max-width: calc(280px * 3 + 2rem * 2);
    /* 3 cards */
  }
}

@media (max-width: 992px) {
  .committee-slider-viewport {
    max-width: calc(280px * 2 + 2rem * 1);
    /* 2 cards */
  }
}

@media (max-width: 640px) {
  .committee-slider-viewport {
    max-width: 280px;
    /* 1 card */
  }
}

@media (max-width: 768px) {
  .cal::before {
    width: 100% !important;
  }

  .committee-header .section-title {
    font-size: 2rem !important;
  }

  .cta-section {
    padding: 2rem 1rem !important;
  }

  .events,
  .committee,
  .categories,
  .testimonials {
    padding: 2rem 0 !important;
  }

  .hero-content {
    padding-top: 0px !important;
  }

  .committee-header {
    margin-bottom: 0px !important;
  }

  .hero-slider-arrows {
    display: none !important;
  }
}