h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body {
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
#main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* body ko navbar height ke liye padding do taaki content navbar ke piche na chhup jaye */
body {
  padding-top: 70px; /* change to your navbar height */
}

.custom-navbar-container_2025 {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-navbar-inner_2025 {
  max-width: 1450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-navbar-links_2025 {
  display: flex;
  gap: 25px;
  align-items: center;
}

.custom-navbar-links_2025 a,
.custom-navbar-dropdown_2025 > span {
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.custom-navbar-links_2025 a:hover {
  color: #b31a33;
}
.custom-navbar-dropdown_2025 > span:hover {
  color: #b31a33;
}
.custom-navbar-dropdown_2025 {
  position: relative;
}

.custom-dropdown-content_2025 {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  z-index: 1000;
}

.custom-navbar-dropdown_2025:hover .custom-dropdown-content_2025 {
  display: block;
}

.custom-dropdown-content_2025 a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
  color: #1a1a1a;
}

.custom-dropdown-content_2025 a:hover {
  color: white;
  background-color: #b31a33;
}
.custom-navbar-toggle-icon_2025 {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Menu */
.custom-mobile-menu_2025 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.custom-mobile-menu-header_2025 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-close-icon_2025 {
  font-size: 26px;
  cursor: pointer;
  color: red;
}

.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;
}

.custom-mobile-contact_2025 p {
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fa-circle-chevron-down {
  color: #b31a33;
}
/* 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;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-navbar-links_2025 {
    display: none;
  }
  .custom-navbar-toggle-icon_2025 {
    display: block;
    margin-right: 40px;
    font-size: 40px;
    color: #b31a33;
  }
  .custom-navbar-logo_2025 img {
    margin-left: 20px;
  }
}

.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;
}

.custom-navbar-logo_2025 img {
  width: 80%;
  height: 80px;
  object-fit: contain;
}

.custom-dropdown-content_2025 {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  left: -40px;
  min-width: 180px;

  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: 12px 18px;
  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: #b31a33; /* dark overlay */
  color: white;
}
