/* RESET & GENERAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0a1f44;
  color: #e8e8e8;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Adjust based on your header height */
}


/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: linear-gradient(90deg, lightblue, #0047a1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #f4f4f4;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
nav a:hover {
  color: #ffd000;
  transform: translateY(-2px);
}
/* Highlight active nav link */
nav a.active {
  color: #ffd000;
  font-weight: 700;
  border-bottom: 2px solid #ffd000;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
/* ===== KEEP NAVBAR FORMAT SAME ON MOBILE ===== */
@media (max-width: 768px) {
  header {
    position: fixed;
    width: 100%;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
  }

  .logo img {
    height: 60px;
  }

  /* Prevent overlapping text when screen shrinks */
  .logo, nav {
    flex: 1;
    min-width: fit-content;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  background: url('images/background.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.8), rgba(0, 58, 144, 0.6));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00aaff, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: #eaeaea;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-content .btn-primary {
  background: #ffd000;
  color: #0a1f44;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 208, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.btn-primary {
  background: #ffd000;
  color: #0a1f44;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255,208,0,0.4);
}

/* KEY FEATURES */
.key-features {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
  color: #0a1f44;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.key-features h2 {
  color: #004aad;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.key-features .subtitle {
  font-size: 1rem;
  color: #4e69d4;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.feature-card {
  background: #fff;
  color: #0a1f44;
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Floating Background Effect */
.key-features::before,
.key-features::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -150px;
  filter: blur(100px);
  animation: float1 10s infinite ease-in-out;
}

.key-features::after {
  top: auto;
  bottom: -120px;
  right: -150px;
  left: auto;
  animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(40px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}


/* ABOUT */
.about {
  background: #0a1f44;
  padding: 100px 0;
  color: #fff;
}
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-text, .about-img {
  flex: 1 1 500px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd000;
}
.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  animation: fadeIn 1.5s ease forwards;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.products h2 {
  color: #004aad;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Product */
.product {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product h3 {
  color: #004aad;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* WHY CHOOSE JOMTRACK */
.why-choose {
  background: linear-gradient(135deg, #0a1f44, #003a90);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.why-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.1rem;
  color: #004aad;
  margin-bottom: 10px;
}

.why-item p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ===== WHO AM I / ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg, #0a1f44, #001b50);
  color: #fff;
  padding: 100px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-image img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid #ffd000;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd000;
  margin-bottom: 15px;
}

.about-content h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-content h3 span {
  color: #00aaff;
  font-weight: 600;
}

.about-content p {
  line-height: 1.7;
  color: #d8e2ff;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  background: #ffd000;
  color: #0a1f44;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background: #ffcc33;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    width: 300px;
    height: 300px;
  }
}


/* FEATURES SECTION */
.features-section {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}
.features-section h2 {
  font-size: 2rem;
  color: #0a1f44;
  margin-bottom: 15px;
}
.features-section .subtitle {
  color: #444;
  margin-bottom: 50px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}
.feature-card {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 25px;
  max-width: 260px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.feature-card h3 {
  color: #0066ff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: #333;
  font-size: 0.95rem;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(135deg, #001b50, #003a90);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.how-it-works h2 {
  font-size: 2rem;
  color: #ffd000;
  margin-bottom: 50px;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.step {
  flex: 1 1 260px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}
.step .number {
  display: inline-block;
  background: #ffd000;
  color: #0a1f44;
  font-weight: 700;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 15px;
}
.step h3 {
  color: #fff;
  margin-bottom: 10px;
}
.step p {
  color: #e0e0e0;
}

/* ===== PHONE TRACKING SECTION ===== */
.phone-tracking {
  background: #f5f7fb;
  padding: 100px 20px;
}

.tracking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.tracking-text {
  flex: 1;
  min-width: 300px;
}

.tracking-text h2 {
  color: #004aad;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.tracking-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tracking-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracking-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #004aad;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tracking-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tracking-image img {
  width: 90%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.tracking-image img:hover {
  transform: scale(1.03);
}

/* Responsive Fix */
@media (max-width: 900px) {
  .tracking-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .tracking-image img {
    max-width: 320px;
  }
}


/* INDUSTRIES */
.industries {
  background: linear-gradient(135deg, #0a1f44, #003a90);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.industries h2 {
  font-size: 2rem;
  color: #ffd000;
  margin-bottom: 50px;
}
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}
.industry {
  flex: 1 1 250px;
  max-width: 280px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}
.industry img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* FAQ SECTION (Animated Dropdown + Scrollable Box) */
.faq {
  background: linear-gradient(135deg, #0a1f44, #003a90);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd000;
  margin-bottom: 40px;
}

/* Scrollable area */
.faq-box {
  max-height: 420px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #fff;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  color: #0a1f44;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Scrollbar */
.faq-box::-webkit-scrollbar {
  width: 8px;
}
.faq-box::-webkit-scrollbar-thumb {
  background: #0066ff;
  border-radius: 6px;
}

/* Individual FAQ */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item:last-child {
  border-bottom: none;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 25px;
  color: #0a1f44;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f4f7ff;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0066ff;
  transition: transform 0.3s ease;
}

/* FAQ Answer (Left aligned + proper spacing) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9faff;
  padding: 0 25px;
  text-align: left; /* ✅ align text left */
  transition: all 0.3s ease;
  border-top: 1px solid #e6e9f2; /* subtle divider for clarity */
}

.faq-answer p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 10px 0 15px 0; /* ✅ tighter spacing between Q & A */
}

/* Active FAQ (visible answer) */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 25px 15px 25px; /* ✅ reduced top padding */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ffd000;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-box {
    max-height: 350px;
  }
  .faq-question {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-box {
    max-height: 350px;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .why-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* HOVER EFFECT */
.product:hover h3 {
  color: #0066ff; /* highlight blue on hover */
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, #0a1f44, #003a90);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-section h2 {
  color: #ffd000;
  font-size: 2rem;
  margin-bottom: 40px;
}

.reviews-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  color: #0a1f44;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.review-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.review-card h4 {
  color: #004aad;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hide scrollbar for clean design */
.reviews-slider::-webkit-scrollbar {
  height: 8px;
}
.reviews-slider::-webkit-scrollbar-thumb {
  background: #ffd000;
  border-radius: 10px;
}

/* Optional glowing edges */
.reviews-section::before,
.reviews-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 27, 80, 1), transparent);
}
.reviews-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 27, 80, 1), transparent);
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
  .review-grid {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .review-grid {
    flex-direction: column;
    align-items: center;
  }
  .review-card {
    max-width: 90%;
  }
}

/* CONTACT CTA */
.cta {
  background: linear-gradient(135deg, #004aad, #003a90),
              url('https://images.unsplash.com/photo-1508898578281-774ac4893a54?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #ffd000;
  text-align: center;
  padding: 120px 20px;
  background-blend-mode: overlay;
}
.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}
.cta .btn-yellow {
  background: #ffd000;
  color: #0a1f44;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.cta .btn-yellow:hover {
  background: #ffe65c;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,208,0,0.4);
}
/* CONTACT SECTION */
.cta {
  background: linear-gradient(135deg, #003a90, #001b50);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffd000;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #e6e6e6;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.btn-yellow {
  background: #ffd000;
  color: #0a1f44;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background: #ffe65c;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 208, 0, 0.4);
}

.product {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.product.visible {
  opacity: 1;
  transform: translateY(0);
}

.email-btn {
  display: inline-block;
  background: #ffcc00;
  color: #0a1f44;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.email-btn:hover {
  background: #ffd633;
  transform: translateY(-3px);
}

.email-btn i {
  margin-right: 8px;
}


/* FOOTER */
footer {
  background: #0a1f44;
  border-top: 2px solid #004aad;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; text-align: center; }
  .about-flex { flex-direction: column; }
  nav a { margin: 10px; display: inline-block; }
}
