 /* -------------------------
   Global & Reset Styles
------------------------- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul.nav {
  gap: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

/* -------------------------
   Top Bar Styling (Updated)
------------------------- */
.top-bar {
  font-size: 18px;
  /* Even larger for MNC-level appearance */
  letter-spacing: 0.4px;
  background: linear-gradient(to right, #004080, #0059b3);
  padding: 14px 24px;
  /* More vertical padding for height */
}

.top-bar-left i,
.top-bar-left a,
.top-bar span {
  font-size: 18px;
}

.top-bar a:hover {
  color: #ffd700;
  transform: scale(1.12);
  /* Slightly more zoom on hover */
}


/* -------------------------
   Header & Navbar
------------------------- */
.main-header {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  z-index: 1000;
}

.main-nav .nav-link {
  color: #222;
  font-weight: 500;
  font-size: 16px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
}

.nav-item.dropdown .nav-link::after {
  margin-left: 6px;
}

.main-nav .dropdown-menu {
  border: none;
  padding: 20px;
  margin-top: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
  width: 100%;
  max-width: 1200px;
}

.mega-menu .col-md-3 h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 5px;
  color: #004080;
}

.dropdown-item {
  padding: 6px 10px;
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: #e9f1ff;
  color: #003366;
  transform: translateX(3px);
}

/* Smooth dropdown animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* list */
.mega-dropdown {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  z-index: 1050;
  transition: all 0.3s ease-in-out;
}

.mega-title {
  font-size: 16px;
  font-weight: 700;
  color: #003366;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.mega-link {
  display: block;
  font-size: 15px;
  padding: 8px 12px;
  color: #003366;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.mega-link:hover {
  background-color: #e6f0ff;
  color: #0056b3;
  transform: translateX(4px);
}

.animate__fadeIn {
  animation: fadeInDown 0.4s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* plecments */
/* Placements Dropdown */
.placements-dropdown {
  min-width: 250px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  animation: fadeInDown 0.4s ease;
  transition: all 0.3s ease-in-out;
}

.placements-dropdown .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  color: #003366;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.placements-dropdown .dropdown-item:hover {
  background-color: #e6f0ff;
  color: #0056b3;
  transform: translateX(4px);
}

/* Optional: animation keyframes if not already included */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enquiry */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.modal-content {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*img  */
.placements-dropdown {
  min-width: 250px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 10px;
  animation: fadeInDown 0.3s ease-in-out;
}

.placements-dropdown .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.placements-dropdown .dropdown-item:hover {
  background-color: #e9f1ff;
  color: #0056b3;
  transform: translateX(4px);
}

/*  */
@media (max-width: 992px) {
  .mega-dropdown {
    position: static !important;
    max-width: 100%;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
  }
}
/* Modal Design */
    .circle-modal-content {
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: #0d1b42;
      color: white;
      padding: 2rem;
      text-align: center;
      position: relative;
      margin: auto;
    }

    .circle-modal-content input {
      border: none;
      border-radius: 25px;
      padding: 10px 20px;
      width: 100%;
      margin-bottom: 15px;
    }

    .circle-modal-content input:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }

    .circle-modal-content button.submit-btn {
      background-color: #f7a600;
      color: white;
      border: none;
      padding: 10px 40px;
      border-radius: 25px;
      font-weight: bold;
      width: 100%;
      margin-top: 10px;
    }

    .circle-modal-close {
      position: absolute;
      top: -10px;
      right: -10px;
      background-color: #f7a600;
      color: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-weight: bold;
      border: none;
    }

    /* Centering modal */
    .modal-dialog-centered {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    /* Responsiveness for Top Bar */
    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: center;
      }

      .top-bar-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .top-bar-left span {
        margin-bottom: 10px;
      }
    }
    .top-bar {
  margin-bottom: 0 !important;
}

.main-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.main-nav .nav {
  margin: 0 !important;
  padding: 0 !important;
}
.main-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.main-nav .nav {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-section {
  background: linear-gradient(135deg, #0b1220, #0f1b2d);
  color: #e5e7eb;
  padding: 60px 0 20px;
  font-size: 15px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-line {
  width: 35px;
  height: 2px;
  background-color: #3b82f6;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-section p {
  margin-bottom: 10px;
  color: #d1d5db;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.linkedin-icon:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

/* Best IT Job Oriented Courses */
body {
  background-color: #e6f3fb;
  font-family: 'Segoe UI', sans-serif;
}

.course-card {
  border: 2px solid #cde;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.course-card:hover {
  transform: scale(1.05);
}

.course-card img {
  height: 120px;
  object-fit: contain;
}

.course-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.section-title {
  text-align: center;
  margin: 30px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

/*Which choose  */
body {
  background: linear-gradient(to right, #f1f4f9, #dff1ff);
  font-family: 'Segoe UI', sans-serif;
}

.why-choose-section {
  padding: 70px 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  margin: 30px auto;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a2a43;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.why-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #00b4db, #0083b0);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.feature-emoji {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: bounceIn 1s;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a2342;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-emoji {
    font-size: 2.5rem;
  }
}

/*  */
/* CLIENTS */
/* Clients Section */
.clients-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 80px 0;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Slider Wrapper */
.client-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

/* Slider */
.client-slider {
  display: flex;
  gap: 60px;
  animation: slideLeft 40s linear infinite;
  width: max-content;
}

/* Logo Card */
.client-logo {
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2),
    -4px -4px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.15);
  z-index: 10;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 120px;
    height: 90px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}

.clients-section .section-heading {
  color: #0056b3;
  /* Change this to #000000 for dark-on-light */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  /* adds depth for readability */
}

.clients-section .section-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.clients-section .section-subheading {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* TOP BLUE BAR – ultra compact */
.top-bar {
  padding: 2px 0 !important;
  margin: 0 !important;
  line-height: 1.2;
}

/* MAIN NAVBAR – reduce height aggressively */
.navbar {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  margin-top: 0 !important;
}

/* Logo – remove extra space */
.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
}

/* Nav links – tighten vertically */
.navbar-nav .nav-link {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Remove accidental spacing wrappers */
header, .header, .nav-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
/* 1️⃣ Kill space BELOW navbar */
.navbar {
  margin-bottom: 0 !important;
  padding-bottom: 2px !important;
}

/* 2️⃣ Remove space ABOVE banner / first section */
.hero,
.banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Ensure navbar truly touches next element */
.main-header {
  display: block;
}

.main-header + .hero,
.main-header + .banner {
  margin-top: 0 !important;
}

/* 3️⃣ If image/banner is inside a container */
.hero img,
.banner img {
  display: block;
  margin-top: 0 !important;
}

/* 4️⃣ Safety: remove top spacing from first container */
body > .container,
body > .container-fluid {
  margin-top: 0 !important;
  padding-top: 0 !important;
} 
/* 🔥 FINAL HEADER GAP KILLER 🔥 */

/* Kill padding inside navbar container */
.main-header .container,
.main-header .container-fluid,
.navbar .container,
.navbar .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Kill navbar height completely */
.main-header {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
}

/* Force navbar items to center without height */
.navbar-nav {
  margin: 0 !important;
}

/* Kill gap below navbar */
.main-header + section,
.main-header + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* If banner is an image */
.main-header + img {
  display: block;
  margin-top: 0 !important;
}

/* 1️⃣ Kill ALL spacing in top bar */
.top-bar {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  line-height: 1 !important;
}

/* 2️⃣ Kill ALL spacing in header & navbar */
.main-header,
.navbar {
  padding: 0 !important;
  margin: 0 !important;
  min-height: unset !important;
  line-height: 1 !important;
  border: none !important;
}

/* 3️⃣ Kill container padding inside navbar (MOST IMPORTANT) */
.main-header .container,
.main-header .container-fluid,
.navbar .container,
.navbar .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 auto !important;
}

/* 4️⃣ Kill spacing in logo */
.navbar-brand,
.navbar-brand img {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  line-height: 1 !important;
}

/* 5️⃣ Kill spacing in nav links */
.navbar-nav,
.navbar-nav .nav-item,
.navbar-nav .nav-link {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.main-header + *,
.navbar + *,
header + section,
header + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 7️⃣ If banner is image */
.main-header + img,
.navbar + img {
  display: block;
  margin-top: 0 !important;
}


hr, br {
  display: none !important;
}
/* SINGLE BODY RESET – MUST BE ONLY ONE */
body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f1f4f9, #dff1ff);
  color: #333;
}
.hero,
.banner,
.slider,
.carousel {
  margin-top: -25px !important;
}

/* Enable hover dropdown */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Prevent popup-like behavior */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0 !important;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Keep dropdown attached to navbar */
.nav-item.dropdown {
  position: relative;
}

/* Remove Bootstrap click caret animation effect */
.dropdown-toggle::after {
  transition: none !important;
}


/* ===== Courses Dropdown Left-Aligned Vertical ===== */
#coursesDropdown + .mega-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 700px;          /* control dropdown width */
  max-width: 90vw;
  padding: 20px;
  border-radius: 16px;
}

/* Keep 3 columns but vertical feel */
.mega-dropdown .row {
  row-gap: 20px;
}

/* Mobile fix */
@media (max-width: 992px) {
  #coursesDropdown + .mega-dropdown {
    position: static;
    width: 100%;
  }
}




/*Enquiry*/
.success-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #28a745;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: pop 0.4s ease;
}

@keyframes pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===============================
   
================================ */
@media (max-width: 576px) {

  /* ---------- Global ---------- */
  body {
    font-size: 14px;
    line-height: 1.5;
  }

  h1, h2, h3 {
    line-height: 1.3;
  }

  section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* ---------- Top Bar ---------- */
  .top-bar {
    font-size: 14px;
    padding: 6px 8px !important;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 6px;
  }

  /* ---------- Navbar ---------- */
  .navbar {
    padding: 4px 8px !important;
  }

  .navbar-brand img {
    max-height: 38px;
  }

  .navbar-toggler {
    padding: 4px 6px;
    font-size: 18px;
  }

  .navbar-nav {
    gap: 6px;
    margin-top: 8px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 8px 10px !important;
    border-bottom: none !important;
  }

  /* ---------- Dropdowns ---------- */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    padding: 10px !important;
    margin-top: 5px !important;
  }

  /* ---------- Mega Menu ---------- */
  .mega-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    border-radius: 12px;
  }

  .mega-title {
    font-size: 15px;
  }

  .mega-link {
    font-size: 14px;
    padding: 6px 8px;
  }

  /* ---------- Hero / Banner ---------- */
  .hero,
  .banner,
  .slider,
  .carousel {
    margin-top: 0 !important;
  }

  .hero img,
  .banner img {
    border-radius: 12px;
  }

  /* ---------- Course Cards ---------- */
  .course-card {
    padding: 12px;
  }

  .course-card img {
    height: 90px;
  }

  .course-title {
    font-size: 1rem;
  }

  /* ---------- Why Choose Section ---------- */
  .why-choose-section {
    padding: 40px 12px;
  }

  .why-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-emoji {
    font-size: 2.2rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  /* ---------- Clients Section ---------- */
  .clients-section {
    padding: 50px 0;
    border-radius: 20px;
  }

  .client-logo {
    width: 100px;
    height: 80px;
  }

  .client-logo img {
    max-height: 60px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .section-subheading {
    font-size: 0.95rem;
  }

  /* ---------- Footer ---------- */
  .footer-section {
    padding: 40px 15px 15px;
    text-align: center;
  }

  .footer-links li {
    border: none;
    padding-bottom: 6px;
  }

  .linkedin-icon {
    margin: 10px auto 0;
  }

  .footer-bottom {
    font-size: 13px;
  }

  /* ---------- Modal ---------- */
  .circle-modal-content {
    width: 90vw;
    height: 90vw;
    max-width: 320px;
    max-height: 320px;
    padding: 1.5rem;
  }

  .circle-modal-content input {
    padding: 8px 16px;
  }

  .circle-modal-content button.submit-btn {
    padding: 8px 20px;
  }
}
/* ===============================
   
================================ */
@media (max-width: 991px) {

  /* Disable hover behavior */
  .nav-item.dropdown:hover > .dropdown-menu {
    display: none;
  }

  /* Let Bootstrap handle click */
  .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #ffffff !important;
    padding: 10px !important;
    margin-top: 6px !important;
    border-radius: 12px;
  }

  /* When menu is OPEN (Bootstrap adds .show) */
  .dropdown-menu.show {
    display: block !important;
  }

  /* Mega menu mobile stacking */
  .mega-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
  }

  .mega-dropdown .row {
    flex-direction: column;
    row-gap: 12px;
  }

  .mega-title {
    font-size: 15px;
  }

  .mega-link {
    font-size: 14px;
    padding: 8px 10px;
  }
}