 :root {
  --primary-color: #b3e234;
  --primary-hover: #a2cc2f;
  --text-dark: #1b1b1b;
  --text-light: #ffffff;
  --nav-bg: #2b2f52;
  --font-main: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-main);
}
.whatsapp-float {
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.back-to-top {
  text-decoration: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #2b2f52;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  background-color: #1e213d;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


.top-bar {
  background-color: var(--nav-bg);
  color: var(--text-light);
  font-size: 14px;
  padding: 6px 0;
}

.main-navbar {
  border-bottom: 1px solid #000;
  background: #fff!important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: #000 !important;
}

.quote-btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 30px;
}

.quote-btn:hover {
  background-color: var(--primary-hover);
}

@media (max-width: 767.98px) {
  .top-links,
  .contact-bar,
  .quote-btn {
    display: none !important;
  }

  .logo-area {
    justify-content: center !important;
  }

  .contact-bar {
    justify-content: center !important;
    text-align: center;
  }
}
.top-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color); /* Slight white tint */
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.top-socials a:hover {
  background-color: #ffffff55;
}
/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 180px;
  border: none;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

/*crousal*/

.carousel-img {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 10%;
  z-index: 10;
  text-align: left;
  color: var(--text-light);
}

.animated-title {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInDown 1s ease-in-out;
}

.animated-subtitle {
  font-size: 1.25rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  margin: 0 5px;
  transform: translateY(-50%);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-hover);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(215%) hue-rotate(174deg) brightness(96%) contrast(90%);
}


/* About Us Section */
  .breadcrumb-section {
 background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 40px;
  font-family: var(--font-main);
  color: #fff;
  position: relative;
  z-index: 1;
}

.breadcrumb-content .page-name {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #fff;
  padding: 0 8px;
}

.breadcrumb a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-hover);
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}
.about-us {
  background-color: #f4f6f9;
  font-family: var(--font-main);
}

.about-us .section-title h2 {
  font-size: 40px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-us .section-title p {
  font-size: 18px;
  color: var(--text-dark);
}

.about-us .row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}


.about-page-section {
  background: #f8f9fa;
  padding: 40px 0;
  font-family: var(--font-main);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--nav-bg);
  margin-bottom: 60px;
}

.about-card {
  background: var(--text-light);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.about-card-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-tagline {
  font-size: 16px;
  font-style: italic;
  color: var(--nav-bg);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Card Styling */
.about-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.about-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 226, 52, 0.2), rgba(162, 204, 47, 0.2));
  z-index: 0;
}

.about-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.about-card h3 {
  font-size: 26px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
  z-index: 1;
}

.about-card p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  z-index: 1;
  flex-grow: 1;
}

.about-card .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  z-index: 1;
}

.about-card .btn-primary:hover {
  background-color: var(--primary-hover);
  cursor: pointer;
  transform: translateY(-3px);
}

/* Responsive design */
@media (max-width: 767px) {
  .about-card {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  .about-us .section-title h2 {
    font-size: 32px;
  }

  .about-card .btn-primary {
    padding: 10px 25px;
  }
}
.company-info-section {
  background: #ffffff;
  font-family: var(--font-main);
}

/* Desktop Table View */
.desktop-view .company-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.desktop-view .company-table thead th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 18px;
  padding: 16px;
  text-align: center;
}

.desktop-view .company-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #dee2e6;
  font-size: 16px;
  color: var(--text-dark);
  text-align: center;
}

.desktop-view .company-table tbody tr:last-child td {
  border-bottom: none;
}

/* Mobile View - Individual Company Sections */
.mobile-view .company-info {
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.mobile-view .company-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mobile-view .company-details {
  list-style-type: none;
  padding: 0;
}

.mobile-view .company-details li {
  font-size: 16px;
  margin: 8px 0;
  color: var(--text-dark);
}

.mobile-view .company-details li strong {
  color: var(--primary-color);
}

/* Styling for Avinash Financial Services (Mobile) */
.mobile-view .company-1 {
  background-color: #e3f9e5; /* Light green */
}

/* Styling for Ajinkya Education & Career Guidance (Mobile) */
.mobile-view .company-2 {
  background-color: #e8f7fc; /* Light blue */
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
  .company-info-section {
    padding: 20px;
  }

  .company-name {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .company-info {
    padding: 15px;
    margin-bottom: 20px;
  }

  .company-details li {
    font-size: 14px;
    margin: 6px 0;
  }

  /* Hide table for mobile */
  .desktop-view {
    display: none;
  }

  /* Show the company info sections for mobile */
  .mobile-view {
    display: block;
  }
}

/* Desktop View Adjustments */
@media (min-width: 768px) {
  /* Hide mobile view for desktop */
  .mobile-view {
    display: none;
  }

  /* Show the table for desktop */
  .desktop-view {
    display: block;
  }
}

/* Section Title Styling */
.section-title {
  padding-top: 79px !important;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding: 20px;
}

/* Heading Styling */
.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 4px;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Heading Hover Effect */
.section-title h2:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  color: var(--text-light);
}

/* Decorative Circle Behind the Heading */
.section-title h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Paragraph Styling */
.section-title p {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
  padding: 0 15px;
  transition: all 0.3s ease;
}

/* Paragraph Hover Effect */
.section-title p:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Animation for Smooth Fade-In */
.section-title h2, .section-title p {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* Fade-In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*services*/
/* Our Services Section */
.our-services {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Section Title */
.our-services .section-title {
  margin-bottom: 50px;
}

.our-services h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.our-services p {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Service Cards */
.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 30px;
}

.service-card:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  font-weight: 400;
}

/* Get Quote Card Styling */
.get-quote-card {
  background-color: #eb9d48;
  color: #fff;
}

.get-quote-card:hover {
  background-color: #a2cc2f;
}

.get-quote-card a {
  background-color: var(--primary-hover);
  padding: 10px 30px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-light);
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.get-quote-card a:hover {
  background-color: #a2cc2f;
}

/* Responsive Design */
@media (max-width: 767px) {
  .service-card {
    padding: 20px;
  }
}


/*why us*/
.why-choose-us-modern {
  padding: 30px 0;
  font-family: var(--font-main);
  background-color: #fff;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.modern-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  position: relative;
}

.modern-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.modern-item i {
  font-size: 30px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.modern-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.modern-item p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

@media (max-width: 600px) {
  .section-title-modern h2 {
    font-size: 28px;
  }

  .modern-grid {
    grid-template-columns: 1fr;
  }
}

/*testimonial*/
.testimonial-section {
  padding: 30px 0;
  background: linear-gradient(145deg, #f9f9f9, #e6f5d9);
  font-family: var(--font-main);
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-heading h2 {
  font-size: 38px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.testimonial-heading .underline {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 4px;
}

.testimonial-slider {
  padding-bottom: 40px;
}

.testimonial-box {
  position: relative;
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(179, 226, 52, 0.4);
}

.testimonial-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.rating {
  font-size: 20px;
  color: gold;
  margin-bottom: 15px;
}

.author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin-bottom: 10px;
}

.author h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 5px 0 0;
}

.author span {
  font-size: 14px;
  color: #777;
}

.swiper-pagination-bullet-active {
  display: none;
  background-color: var(--primary-color) !important;
}


/* Contact Us Section */
.contact-us {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  margin: 0 auto;
  background: #fff;
}

/* Right Side - Contact Form */
.contact-form {
  width: 50%;
}

.contact-form h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
}

.contact-form button:hover {
  background-color: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-us {
    flex-direction: column;
    padding: 20px;
  }
   .section-title h2 {
    font-size: 1.5rem;
   }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}


/*footer*/
footer {
  background: linear-gradient(135deg, #2b2f52, #1b1b1b);
  color: var(--text-light);
  padding: 30px;
  font-family: var(--font-main);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-section {
  width: 22%;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: var(--primary-color);
   text-shadow: 
    #b3e234 0px 0px 15px,
    #b3e234 0px 0px 25px;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  padding-left: 0;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-section .contact p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-section .contact a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer-section .contact a:hover {
  color: var(--primary-hover);
}

.footer-bottom {
  text-align: center;
  color: #ddd;
  font-size: 0.9rem;
  border-top: 1px solid #444;
}

.footer-bottom p:first-child {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Hover and Transition Effects */
.footer-section ul li a:hover {
  padding-left: 8px;
  color: var(--primary-color);
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-section {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}


footer {
  background-color: #2b2f52;
  color: var(--text-light);
  font-family: var(--font-main);
  padding: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.footer-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content ul li {
  margin-bottom:5px;
}

.footer-content ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-content ul li a:hover {
  color: var(--primary-color);
}

.footer-content .contact p {
  font-size: 1rem;
}

.footer-content .contact a {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom p:last-child {
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content .contact {
    margin-top: 20px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}


   .sec {
      padding: 2rem;
    }

    .highlight {
      color: var(--primary-color);
    }

    .service-box {
      background: #f4f4f4;
      border-left: 6px solid var(--primary-color);
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-radius: 8px;
      transition: border-color 0.3s ease;
    }

    .service-box:hover {
      border-left-color: var(--primary-hover);
    }

    .service-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--nav-bg);
    }

    .facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.facility-item {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(43, 47, 82, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-weight: 600;
  color: var(--nav-bg);
}

.facility-item:hover {
  background-color: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-4px);
}
