* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  overflow-x: hidden;
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-circle {
  width: 48px;
  height: 48px;
  border: 4px solid #f3f0ff;
  border-top-color: #7c3aed;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader-inner span {
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  letter-spacing: 1px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── SCROLL TO TOP ─── */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.navbar {
  background: #fff;
  padding: 16px 40px;
  box-shadow: 0 1px 0 #eee;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e !important;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.nav-link {
  color: #555 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px !important;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #7c3aed;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover {
  color: #7c3aed !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active-link {
  color: #7c3aed !important;
}

.nav-link.active-link::after {
  transform: scaleX(1);
}

.btn-contact {
  background: #7c3aed;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 22px !important;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: #6d28d9;
}

.btn-contact::after {
  display: none;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg,
      rgba(255, 200, 200, 0.25) 0%,
      rgba(255, 255, 255, 0.6) 30%,
      rgba(200, 220, 255, 0.25) 60%,
      rgba(200, 255, 230, 0.25) 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #a78bfa 0%, #38bdf8 50%, #34d399 100%);
}

.hero-greeting {
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.3s ease forwards;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.5s ease forwards;
}

.hero-title span {
  color: #7c3aed;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 28px;
  max-width: 460px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.7s ease forwards;
}

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

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

.btn-primary-purple {
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-purple:hover {
  background: #6d28d9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.hero-photo-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 340px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.8s ease forwards;
}

.hero-photo-card img,
.hero-photo-card .photo-placeholder {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.photo-placeholder {
  background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.social-icons-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e5e7eb;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon-btn:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  transform: translateY(-2px);
}

.social-icon-btn.linkedin-active {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.social-icon-btn.linkedin-active:hover {
  background: #6d28d9;
  color: #fff;
}

.stats-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeInUp 0.6s 1s ease forwards;
}

.stat-box {
  background: #f3f0ff;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  flex: 1;
  transition: transform 0.2s;
}

.stat-box:hover {
  transform: translateY(-3px);
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  display: inline;
}

.stat-label {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* ─── ABOUT ─── */
#about {
  padding: 80px 0;
  background: #f9f9fb;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.about-photo {
  background: #f3f4f6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 40px;
}

.about-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 12px;
}

/* Skills bars */
.skill-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.skill-percent {
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
}

.skill-bar {
  height: 6px;
  background: #f0eeff;
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-purple {
  border: 1.5px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline-purple:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── WORK PROCESS ─── */
#process {
  padding: 80px 0;
  background: #f9f9fb;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 48px;
}

.process-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.process-card:hover {
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.14);
  transform: translateY(-4px);
  border-bottom-color: #7c3aed;
}

.process-icon {
  width: 48px;
  height: 48px;
  background: #f3f0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: #7c3aed;
  transition: background 0.3s;
}

.process-card:hover .process-icon {
  background: #7c3aed;
  color: #fff;
}

.process-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

/* ─── PORTFOLIO ─── */
#portfolio {
  padding: 80px 0;
  background: #fff;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: #f3f0ff;
  color: #7c3aed;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-link {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
  transform: translateY(10px);
}

.portfolio-card:hover .overlay-link {
  transform: translateY(0);
}

.overlay-link:hover {
  background: #7c3aed;
  color: #fff;
}

.portfolio-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-body {
  padding: 20px;
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 6px;
}

.portfolio-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.portfolio-body p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-case {
  border: 1.5px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-case:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateX(2px);
}

.btn-more {
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}

.btn-more:hover {
  background: #6d28d9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

/* Portfolio hidden item */
.portfolio-item.hidden {
  display: none;
}

/* ─── CTA BAND ─── */
#cta {
  background: #1a1a2e;
  padding: 70px 0;
  text-align: center;
}

#cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

#cta p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 28px;
}

.btn-cta {
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-cta:hover {
  background: #6d28d9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* ─── BLOG ─── */
#blog {
  padding: 80px 0;
  background: linear-gradient(180deg,
      rgba(255, 220, 220, 0.18) 0%,
      rgba(255, 255, 255, 0.7) 30%,
      rgba(210, 230, 255, 0.18) 70%,
      rgba(200, 255, 230, 0.15) 100%);
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.blog-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.blog-body {
  padding: 18px;
}

.blog-meta {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 8px;
}

.blog-body p {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
}

/* ─── SERVICES ─── */
#services {
  padding: 80px 0;
  background: #f9f9fb;
}

.service-list-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.service-list-card.active {
  border-left-color: #7c3aed;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.1);
}

.service-list-card:hover {
  border-left-color: #7c3aed;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.1);
  transform: translateX(4px);
}

.service-list-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.service-list-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

/* ─── CLIENTS ─── */
#clients {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}

.client-logo {
  font-size: 18px;
  font-weight: 700;
  color: #ccc;
  padding: 10px 24px;
  transition: all 0.3s;
  display: inline-block;
  cursor: default;
}

.client-logo:hover {
  color: #7c3aed;
  transform: scale(1.08);
}

/* ─── TESTIMONIAL ─── */
#testimonial {
  padding: 80px 0;
  background: #f9f9fb;
  text-align: center;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi-quote {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  max-width: 700px;
  margin: 0 auto 28px;
  font-style: italic;
}

.testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid #7c3aed;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
}

.testi-role {
  font-size: 13px;
  color: #999;
}

.testi-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.dot {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: #7c3aed;
  transition: all 0.3s;
  cursor: pointer;
}

.dot.inactive {
  width: 6px;
  background: #ddd;
}

.testi-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.testi-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.testi-nav button:hover {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

/* ─── CONTACT ─── */
#contact {
  padding: 80px 0;
  background: #f9f9fb;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
  padding: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item {
  background: #f3f0ff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  transition: transform 0.2s;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: #7c3aed;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  color: #999;
}

.contact-info-val {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.csoc {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s;
}

.csoc:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.csoc.fb {
  background: #1877f2;
}

.csoc.dr {
  background: #ea4c89;
}

.csoc.be {
  background: #1769ff;
}

.csoc.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.csoc.li {
  background: #0a66c2;
}

.form-control-custom {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #e5e7eb;
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
  color: #1a1a2e;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-control-custom:focus {
  border-bottom-color: #7c3aed;
}

.form-control-custom::placeholder {
  color: #ccc;
}

.field-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.field-error.show {
  display: block;
}

.btn-submit {
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.form-success-msg {
  margin-top: 16px;
  padding: 14px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  color: #16a34a;
  font-size: 14px;
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: #1a1a2e;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  color: #888;
  font-size: 12px;
}

/* ─── UTILS ─── */
.text-purple {
  color: #7c3aed !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 220px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .stats-row {
    flex-wrap: wrap;
  }
}