.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px;
  z-index: 1001;
  background: white;
  position: fixed;
  width: 96%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 20px;
}

.nav-item a {
  text-decoration: none;
  color: #212121;
  font-size: 16px;
  padding: 12px 1px 12px 14px;
}

.nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 150px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.nav-item:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 7px;
  color: #333;
  line-height: 25px;
}

.dropdown a:hover {
  opacity: 0.8;
}

.header-logo {
  width: 100px;
}

.header-search {
  width: 24px;
  cursor: pointer;
}

.header-down {
  width: 17px;
}

.nav-right {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px;
}

.menu-toggle {
  width: 26px;
  display: none;
  cursor: pointer;
}

.mobile-sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-sidebar.open {
  left: 0;
}

.mobile-sidebar a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #000;
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  width: 20px;
  cursor: pointer;
}

.dropdown-mobile .dropdown-content {
  display: none;
  padding-left: 10px;
}

.dropdown-content.open {
  display: block;
}

.mobile-arrow {
  width: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.mobile-arrow.rotated {
  transform: rotate(180deg);
}

.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* footer css */

footer {
  background-color: #f5f5f5;
  padding: 0px 10px;
}

.footer-container {
  max-width: 1110px;
  margin: auto;
}

.footer-icon {
  width: 15px;
}

.footer-social {
  display: flex;
  gap: 30px;
}

.footer-content-inner {
  min-height: 343px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text a{
  color: #000000;
  font: 12px !important;
  font-weight: 400;
  margin: 0;
  text-decoration: none;
}


/* search inner css */
.search-section {
  padding: 40px 10px;
}

.search-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.search-container input[type="text"] {
  padding: 0 10px;
  font-size: 16px;
  width: 643px;
  outline: none;
  border: 3px solid #000;
  min-height: 52px;
  transition: all 0.5s ease;
}

.search-container input[type="text"]:focus {
  border: 1px solid #000;
}

.search-container button {
  background: #222;
  border: none;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-container button img {
  width: 18px;
  height: 18px;
  filter: invert(100%);
}


/* Responsive Rules */

.widget-title {font-size: var(--bt-font-size-footer-widgets-title, 20px);font-weight: 400}

.subscription-form label {
    display: block;
    color: #222;
    margin-bottom: 6px;
}

.subscription-form input[type="email"] {
    padding: 18px;
    border: 1px solid #212121;
    font-size: 14px;
    color: #333;
    background-color: #fff;
}

.subscription-form button {
    display: block;
    border: 2px solid var(--bt-color-button-border, #212121);
    margin-top: 20px;
    background-color: #222;
    color: #fff;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}
.new-footer-main{display: flex;align-items: start;justify-content: space-between;}
.nf-item{flex: 0 0 50%;}
/*for web*/
/* Submenu styles */
.dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item a {
  flex: 1;
}

/* Submenu arrow icon */
.submenu-arrow {
  width: 16px;
  margin-right: 10px;
  transform: rotate(-90deg); /* points right */
  transition: transform 0.3s ease;
}

.dropdown-item:hover .submenu-arrow {
  transform: rotate(0deg); /* points down when hovered */
}

.dropdown-item .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 150px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.dropdown-item:hover .submenu {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/*for web*==========================================/

/*for mobile =====================*/
.mobile-menu {font-family: Arial, sans-serif;}
.dropdown-mobile {border-bottom: 1px solid #f0f0f0;}
.mobile-toggle {display: flex;justify-content: space-between;align-items: center;padding: 10px 0;cursor: pointer;}
.mobile-toggle span, .dropdown-content a {font-size: 16px;color: #212121;text-decoration: none;}
.dropdown-content {max-height: 0;overflow: hidden;padding-left: 15px;transition: max-height 0.3s ease, padding 0.3s ease;}
.dropdown-content.open {max-height: 500px;padding-top: 5px;padding-bottom: 5px;}
.dropdown-content a {display: block;padding: 5px 0;}
.mobile-arrow {width: 12px;transition: transform 0.3s ease;}
.mobile-arrow.rotated {transform: rotate(180deg);}
.dropdown-content .dropdown-mobile .dropdown-content {padding-left: 20px;}
/*for mobile =====================*/

@media (max-width: 768px) {
  .nav-left {display: none;}
  .menu-toggle {display: block;}
  .nav-right {display: flex;align-items: center;padding: 0px;width: 100%;justify-content: space-between;  }
  .footer-bottom {display: block;}
  .nf-item{flex: auto;}
  .header {width: 90%;}
  .footer-bottom .footer-social{margin: 20px 0px;}
}