body {
    overflow: auto; /* Or scroll if you always want scrolling available */
}

body::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

/* z navbar customization */
 
    /* ====== TOP BANNER ====== */
    .top-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #030038;
      color: white;
      padding: 0.75rem 1rem;
      text-align: center;
      font-weight: 900;
      font-style: italic;
      z-index: 1050;
    }

    /* ====== NAVBAR ====== */
    .navbar-custom {
      background: linear-gradient(to right, #030341, #000022);
      box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1rem;
      z-index: 1040;
    }
    .nav-item{
      margin-left: 25px;
    }

    .navbar-caption {
      font-size: 2.8rem;
      font-style: normal;
      font-weight: 600;
      font-family: sans-serif;
      background: linear-gradient(to left, #8a2b2b, #a8d7eb, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      /* margin-left: 10px; */
    }

    .navbar-nav .nav-link {
      color: #ffffff !important;
      font-size: 1.2rem!important;
      font-weight: 500;
     
    
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #771f1f !important;
    }

    .dropdown-menu {
      border-radius: 0.5rem;
      border: 2px solid #040335;
      box-shadow: 0 6px 20px rgba(160, 10, 10, 0.951);
    }

    .dropdown-menu .dropdown-item {
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .dropdown-menu .dropdown-item:hover {
      background-color: #030341;
      color: #ffffff;
    }

    .nav-btn .btn {
      color: #ffffff !important;
      background: linear-gradient(to left, #030341, #720c0c) !important;
      padding: 0.4rem 1rem;
      font-weight: 400;
      font-size: 110%;
      border-radius: 0.375rem;
     
    }

    .btn:hover {
      background: linear-gradient(to right, #030341, #720c0c) !important;
    }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
      }
    }



/* === Hero Section Styles === */
#home {
  position: relative;
  padding-top:40px ;
    background-color: #030341; 
  color: #ffffff;
  overflow: hidden;
}s

#home .hero-text h5 {
  color: #ffffffdd;
  font-size: 1.3rem !important;
  font-weight:bolder;
  font-style: italic !important ;
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.6S;
  opacity: 0;
}

#home .hero-text h1 {
  font-size: 4rem;
  /* font-weight: 800; Bold and clean */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  line-height: 1.2;
  text-align:initial;
  margin-left:-3%!important;
  

  /* Gradient text */
  background: linear-gradient(140deg, #971717, #ce5a5aec, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Animation */
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;

  /* Optional text shadow for soft glow */
  text-shadow: 4px 4px 10px rgba(255, 0, 0, 0.05);
}

/* Animation Keyframes */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Default (for large screens) */
#home .hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  padding: 0 1rem;
}

/* Medium devices (up to 991px) */
@media (max-width: 991px) {
  #home .hero-text h1 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }

#home .hero-text h5 {
margin-left: 1%;
}
}
/* Small devices (up to 768px) */
@media (max-width: 768px) {
  #home .hero-text h1 {
    font-size: 2rem;
    padding: 0;
    margin-left: -1px!important;
  }
}

/* Extra small devices (up to 480px) */
@media (max-width: 480px) {
  #home .hero-text h1 {
    font-size: 1.8rem;
    margin-left:2%!important;
  }
#home .hero-text h5 {
margin-left: 3%;
}
}
#home .hero-text p {
  font-size: 1.5rem;
  color: #ffffffec;
  line-height: 1.2!important;
  margin-top: 1rem;
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  font-family: sans-serif;
}
@media (max-width: 480px) {
  #home .hero-text p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

#home .main-btn a img {
  max-height: 50px;
  transition: transform 0.3s ease;
}

#home .main-btn a:hover img {
  transform: scale(1.05);
}

/* Social icons */
#home .hero-icon h5 {
  font-weight: 600;
  color: #ffffff;
}

#home .hero-icon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#home .hero-icon li a i {
  font-size: 1.25rem;
  transition: all 0.3s ease;
  background-color: rgb(255, 250, 250);
  color: #23a9a7;
}

/* #home .hero-icon li a:hover i {
  background-color: #23a945;
  color: #dc0000;
} */

/* Animation images */
#home .animation-img {
  position: absolute;
  z-index: 1;
  animation: floatY 6s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Animation Keyframes === */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* .container.about-header {
  border-left: 4px solid #7c200d!important;
  width: fit-content;
  height: fit-content;
} */
#about .icon-text {
  min-height: 180px; /* Set the minimum or fixed height */
  height: 100%;
  display: flex;
  flex-direction:column;
  justify-content:flex-start!important; /* Space out title and paragraph */
  padding: 20px!important;
  background: hsl(0, 0%, 100%)!important; /* Optional background */
  border-radius: 10px; /* Optional rounded corners */
 /* border-left: 4px solid #7c200d!important; */
 
}
 .box-size{
  height:50%;
  width:100%;
  /* max-width: auto; */
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  border-left: 4px solid #7c200d;
  box-shadow: 0 3px 10px rgb(34, 6, 103)!important;
 }
 .about-box{
  padding-top: 8%;
 }
 .col-lg-5{
  height:10%!important;
  width: 50%;
 }


#about .row.mt-2.g-3 .col-lg-6 {
  display: flex;
  
}

#about .row.mt-2.g-3 {
  row-gap: 15px; /* Adds space between rows if needed */
  
}

#about p {
  font-size: 1.1rem;
  color:rgb(44, 44, 44);
  font-family:sans-serif;
  text-align:justify;
}

#about .btn-part .btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;

}

#about .icon-text {
  transition: all 0.3s ease-in-out;
  border-left: 4px solid #7c200d;
  box-shadow: 0 3px 10px rgb(34, 6, 103);
 
}

#about .icon-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgb(164, 6, 6);
  background-color: #ca0606;
}

#about .icon-text h3 {
  font-size: 1.5rem;
  color: #b41e1e;
  font-weight: 600;
}


#about .icon-text p {
  font-size: 1.2rem;
  /* color: #000000; */
  margin-bottom: 0;
  text-align: left;
}



#about.animate .about-header,
#about.animate p,
#about.animate .btn-part {
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

#about.animate .icon-text {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

/* Delay for each icon box */
#about.animate .row.mt-2.g-3 .col-lg-6:nth-child(1) .icon-text {
  animation-delay: 0.3s;
}
#about.animate .row.mt-2.g-3 .col-lg-6:nth-child(2) .icon-text {
  animation-delay: 0.5s;
}
#about.animate .row.mt-2.g-3:nth-of-type(2) .col-lg-6:nth-child(1) .icon-text {
  animation-delay: 0.7s;
}
#about.animate .row.mt-2.g-3:nth-of-type(2) .col-lg-6:nth-child(2) .icon-text {
  animation-delay: 0.9s;
}

#about .row.mt-2.g-3 .col-lg-6 {
  display: flex;
  flex: 1;
}
#about .icon-text {
  flex: 1;
  height: 100%;
}
/* Tablet Fix: Align icon-text boxes */
@media (max-width: 991.98px) {
  #about .row.mt-2.g-3 .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
  }
.hello
{
  height: 10%;
  width: 100%;
}
  #about .icon-text {
    padding: 18px !important;
    flex: 1;
    height: 100%;
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  #about .row.mt-2.g-3 .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #about .icon-text {
    min-height: auto;
  }
}



#features {
   padding-top: 10px !important;
   padding-bottom: 10px !important;
   font-weight :bolder;
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#let {
font-size: 10rem !important;
 
} 

#features.animate {
  opacity: 1;
  transform: translateY(0);
}

#features.animate .feature-img{
   /* animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0; */
 animation: slideInLeft 2s ease forwards;
 animation-timeline: view(50);
 /* animation-range: entry 0%; */
}

#features.animate .feature-header {
  animation: slideInRight 0.5s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
#features.animate .item-1 {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
#features.animate .item-2 {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
#features.animate .item-3 {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}



/* === Keyframes === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Keyframes === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#Business {
  background-color: #f9f9ff;
  padding: 60px 0;
}

#Business h1 {
  font-size: 3.9rem;
  font-weight: 900;
  color: #811b1b;
  margin-bottom: 1rem;

}

#Business p {
  color: #000000;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

#Business .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

#Business .card1,
#Business .card2,
#Business .card3 {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #d1d9ff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Business .card1:hover,
#Business .card2:hover,
#Business .card3:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.64);
}

#Business h3 {
  font-size: 1.45rem;
color: #bc1f00!important;
  font-weight: 600;
  margin-bottom: 1rem;
   text-align: center !important;
}

#Business ul {
  padding-left: 0px !important;
  padding-top: 20px;
  text-align: justify;
}

#Business ul li {
  margin-bottom: 0.5rem;
  color: #000000;
  font-size: 1.10rem;
}

#Business ul li strong {
  color: #040335;
}

/* Initial state before scroll */
#Business .card1,
#Business .card2,
#Business .card3,
#Business .text-center {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Animate when in viewport */
#Business.animate .text-center {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

#Business.animate .card1 {
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.3s;
}

#Business.animate .card2 {
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

#Business.animate .card3 {
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.7s;
}


#contacts {
  /*background-color: #121212;  Dark background */
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

#contacts h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

#contacts a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
}

#contacts a:hover {
  color: #ffffff;
}

#contacts ul {
  padding-left: 0;
  list-style: none;
}

#contacts .footer-icon a {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #bbb;
  transition: color 0.3s ease, transform 0.3s ease;
}

#contacts .footer-icon a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

#contacts .form.subscribe {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

#contacts .form.subscribe input {
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  flex: 1;
  margin-right: 0.5rem;
}

#contacts .form.subscribe .submit {
  color: #fff;
  background-color: #ffffff!important;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#contacts .form.subscribe .submit:hover {
  background-color: #ffffff;
}

@media (max-width: 768px) {
  #contacts {
    text-align: center;
  }

  #contacts .form.subscribe {
    flex-direction: column;
    gap: 10px;
  }

  #contacts .form.subscribe input {
    width: 100%;
    margin-right: 0;
  }

  #contacts .form.subscribe .submit {
    width: 100%;
  }
}/* ====================== */
/* 📱 MOBILE RESPONSIVENESS */
/* ====================== */
@media (max-width: 768px) {

  /* Navbar */
  .navbar-custom {
    padding: 0.5rem 1rem;
  }

  #navbar .navbar-caption {
    font-size: 2rem !important;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem !important;
    padding: 0.5rem 1rem;
    /* text-align: center; */
  }

  /* Hero Section */
  #home {
    padding: 80px 0;
    /* text-align: center; */
  }

  #home .hero-text h1 {
    font-size: 2.3rem !important;
    padding: 0 1rem;
  }

  #home .hero-text h5 {
    font-size: 1rem !important;
    /* text-align: center; */
  }

  #home .hero-text p {
    font-size: 0.9rem !important;
    line-height: 1.5;
    padding: 0 1rem;
  }

  #home .hero-icon h5 {
    font-size: 1rem;
  }

  /* About Section */
  #about .icon-text {
    min-height: auto;
    padding: 16px !important;
  }

  #about .icon-text h3 {
    font-size: 1.3rem;
  }

  #about .icon-text p {
    font-size: 1rem;
  }

  #about p {
    font-size: 1rem;
  }

  #about .btn-part .btn {
    font-size: 1rem;
    padding: 8px 20px;
  }

  /* Features */
  #features {
    padding: 20px 15px !important;
  }
  #let {
    font-size: 5rem !important;
  }

  /* Business Section */
  #Business h1 {
    font-size: 2.4rem;
  }

  #Business p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  #Business ul li {
    font-size: 1rem;
  }

  /* Contacts */
  #contacts h5 {
    font-size: 1rem;
  }

  #contacts a,
  #contacts ul li,
  #contacts .footer-icon a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #home .hero-text h1 {
    font-size: 2rem !important;
    padding: 0 0.5rem;
  }

  #home .hero-text p {
    font-size: 0.9rem!important;
  }

  #about .icon-text h3 {
    font-size: 1.2rem;
  }

  #about .icon-text p,
  #about p {
    font-size: 0.95rem;
  }

  #Business h1 {
    font-size: 2rem;
  }

  #Business h3 {
    font-size: 1.2rem;
  }

  #contacts {
    padding: 40px 15px;
  }
}

/* paycircle-circle-hompage */
 .orbit-wrapper {
  position: relative;
  width: 600px;
  height: 600px;
  margin-right: 30px;
}

/* Center Logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.center-logo img {
  width: 100%;
  height: auto;
}

/* Orbit Circles */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px dashed #c7d2de;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.orbit1 { width: 240px; height: 240px; }
.orbit2 { width: 320px; height: 320px; animation-duration: 18s; animation-direction: reverse; }
.orbit3 { width: 400px; height: 400px; animation-duration: 24s; }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit Object Position */
.orbit-object {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 120px;
}
.orbit2 .orbit-object { transform-origin: 0 160px; }
.orbit3 .orbit-object { transform-origin: 0 200px; }

/* Orbit Icons */
.orbit-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff30;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: counter-rotate 20s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.orbit2 .orbit-img { animation-duration: 18s; animation-direction: reverse; }
.orbit3 .orbit-img { animation-duration: 24s; }

.orbit-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.orbit-img:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes counter-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .orbit-wrapper {
    width: 500px;
    height: 500px;
    margin: 40px auto; /* Horizontally centered */
  }

  .center-logo {
    width: 140px;
    height: 140px;
  }

  .orbit1 {
    width: 220px;
    height: 220px;
  }

  .orbit2 {
    width: 300px;
    height: 300px;
  }

  .orbit3 {
    width: 380px;
    height: 380px;
  }

  .orbit-object {
    transform-origin: 0 110px;
  }

  .orbit2 .orbit-object {
    transform-origin: 0 150px;
  }

  .orbit3 .orbit-object {
    transform-origin: 0 190px;
  }

  .orbit-img {
    width: 55px;
    height: 55px;
  }
}


/* Mobile (≤480px) */
@media (max-width: 480px) {
  .orbit-wrapper {
    width: 300px;
    height: 300px;
    margin: 30px auto; /* Center horizontally */
  }

  .center-logo {
    width: 80px;
    height: 80px;
  }

  .orbit1 { width: 130px; height: 130px; }
  .orbit2 { width: 190px; height: 190px; }
  .orbit3 { width: 250px; height: 250px; }

  .orbit-object { transform-origin: 0 65px; }
  .orbit2 .orbit-object { transform-origin: 0 95px; }
  .orbit3 .orbit-object { transform-origin: 0 125px; }

  .orbit-img { width: 36px; height: 36px; }
}


/* carousel */
   .carousel-item {
  position: relative;
  height: 100vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  /* padding-bottom: 60px; */
  border-radius: 12px;
  color: white;
  max-width: 720px;
  width: 90%;
  text-align: center;
  box-sizing: border-box;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Tablet view (portrait and landscape) */
@media (max-width: 992px) {
  .carousel-caption {
    padding: 30px;
    max-width: 85%;
  }

  .carousel-caption h2 {
    font-size: 1.9rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  
  }
  .carousel-item{
    height: auto;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .carousel-caption {
    padding: 18px;
  
    border-radius: 10px;
  }

  .carousel-caption h2 {
    font-size: 1.4rem;
  }

  .carousel-caption p {
    font-size: 0.80rem;
    /* padding-bottom: 10%!important; */
  }
  .carousel-item{
    height: auto;
  }

}
/* lap view */
@media (max-width: 1024px) {
  .carousel-item{
    height: auto;
  }
}