body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

#main-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1f1f1f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-top: 1px;
}

.custom-navbar-container_2025 {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-navbar-inner_2025 {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 15px;
}

/* LEFT logo, CENTER links, RIGHT language + toggle */
.custom-navbar-logo_2025 {
  flex: 0 0 auto;
}

.custom-navbar-links_2025 {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 55px;
  align-items: center;
}

.custom-navbar-right_2025 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-navbar-links_2025 a,
.custom-navbar-dropdown_2025 > span {
  text-decoration: none;
  color: #f7c500;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
}

.custom-navbar-links_2025 a:hover,
.custom-navbar-dropdown_2025 > span:hover {
  color: #ffffff;
}

.custom-navbar-dropdown_2025 {
  position: relative;
}

/* Products dropdown */
.custom-dropdown-content_2025 {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  left: -40px;
  min-width: 380px;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.custom-navbar-dropdown_2025:hover .custom-dropdown-content_2025 {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-content_2025 a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f2f2f2;
  font-size: 16px;
}

.custom-dropdown-content_2025 a:last-child {
  border-bottom: none;
}

.custom-dropdown-content_2025 a:hover {
  background: #f7c500;
  color: white;
  border-radius: 6px;
}

.fa-solid {
  color: #f7c500;
}

/* LANGUAGE DROPDOWN */
.custom-navbar-lang_2025 {
  position: relative;
}

.lang-selector_2025 {
  position: relative;
}

.lang-btn_2025 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.lang-btn_2025 i {
  font-size: 12px;
}

.lang-flag_2025 {
  font-size: 18px;
}

.lang-dropdown_2025 {
  position: absolute;
  right: 0;
  top: 110%;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  min-width: 170px;
  display: none;
  z-index: 1500;
}
.lang-dropdown_2025.show {
  display: block;
}

.lang-dropdown_2025 button {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.lang-dropdown_2025 button span:first-child {
  font-size: 18px;
}

.lang-dropdown_2025 button:hover {
  background: #f4f4f4;
}

/* Mobile toggle */
.custom-navbar-toggle-icon_2025 {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #f7c500;
}

/* Logo size */
.custom-navbar-logo_2025 img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

/* Mobile Menu: SLIDE FROM TOP */
.custom-mobile-menu_2025 {
  position: fixed;
  top: -100vh; /* hidden above screen */
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* when open */
.custom-mobile-menu_2025.open {
  top: 0;
}

.custom-mobile-menu-header_2025 {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 20px;
}

.custom-close-icon_2025 {
  font-size: 26px;
  cursor: pointer;
  color: #000; /* ✅ force black color */
  z-index: 10000;
}

.custom-mobile-menu-links_2025 a,
.custom-mobile-dropdown_2025 > span {
  display: block;
  margin: 15px 0;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
}

.custom-mobile-dropdown-links_2025 {
  margin-left: 15px;
}

/* Mobile Service Dropdown animation */
.custom-mobile-dropdown-links_2025 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.custom-mobile-dropdown-links_2025.show {
  max-height: 500px;
}

.custom-mobile-contact_2025 p {
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-mobile-menu-links_2025 a,
.custom-mobile-dropdown_2025 > span,
.custom-mobile-dropdown-links_2025 a {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* Mobile language wrapper (by default hidden on desktop) */
.custom-mobile-lang-wrapper_2025 {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-navbar-links_2025 {
    display: none; /* center links hide */
  }

  .custom-navbar-toggle-icon_2025 {
    display: block;
    font-size: 32px;
  }

  .custom-navbar-inner_2025 {
    padding: 8px 10px;
  }

  .lang-btn_2025 {
    padding: 4px 8px;
    font-size: 13px;
  }

  /* Desktop language ko mobile par hide karo */
  .custom-navbar-lang_2025.desktop-only {
    display: none;
  }
}

/* Desktop par mobile lang wrapper hide karna ho to (optional): 
@media (min-width: 993px) {
  .custom-mobile-lang-wrapper_2025 {
    display: none;
  }
}
*/

/* Google translate ke UI ko hide karne ke liye */
.custom-navbar-links_2025 > a, .custom-navbar-dropdown_2025 > span{
 color: #000;
}
.custom-navbar-links_2025 > a:hover, .custom-navbar-dropdown_2025 > span:hover{
color: #f7c500 !important;
}

.inner-custom-dropdown{
  border: 0px !important;
}

.inner-custom-dropdown .custom-dropdown-content_2025{
  display: none !important;
  left: -80%;
}

.inner-custom-dropdown:hover .custom-dropdown-content_2025{
  display: block !important;
}

.inner-custom-dropdown:hover i{
color: white !important;
}