.header-container {
  font-family: "Montserrat", sans-serif;
  padding-top: 17px;
  position: absolute;
  width: 100%;
  z-index: 111;
  overflow-x: hidden;
}

.logo-img {
  height: 73px;
  width: 234px;
  object-fit: cover;
}

.nav-container {
  border: 2px solid #404040;
  border-radius: 50px;
  padding: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-container a {
  text-decoration: none;
}

.nav-item-active {
  background-color: #f97316;
  border-radius: 50px;
  padding: 10px 20px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  min-width: 100px;
}

.nav-item {
  padding: 10px 20px;
  border-radius: 12px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  min-width: 100px;
  /* cursor: pointer; */
  transition: background-color 0.3s ease;
  position: relative;
}

.nav-item:hover {
  background-color: #f97316;
  border-radius: 50px;
}

.nav-item:hover .nav-text {
  color: white;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-text-active {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-align: center;
  white-space: nowrap;
}

.nav-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-arrow a {
  text-decoration: none;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.services-dropdown-wrapper {
  position: relative;
}

.services-dropdown {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1800px;
  background: white;
  box-shadow: 0px -9px 32.3px 0px rgba(0, 0, 0, 0.25) inset,
    0 10px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid #ff7415;
  border-top: unset;
  border-radius: 30px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.services-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-section {
  width: 383px;
  height: 440px;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(180deg, #eb7b0a 0%, #ffdab4 100%);
  padding: 20px;
  flex-shrink: 0;
}

.promo-section h2 {
  color: white;
  font-family: "Clash Display", sans-serif;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}

.promo-section p {
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.promo-section img {
  width: 226px;
  height: 229px;
  margin: 20px auto;
  display: block;
}

.promo-btn {
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #008c1e 0%, #2bf055 100%);
  border: none;
  border-radius: 70px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
}

.dropdown-section-title {
  color: #ff7415;
  font-size: 35px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.dropdown-column h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-column ul li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  /* cursor: pointer; */
  transition: color 0.2s ease;
}

.dropdown-column a {
  color: #000;
}

.dropdown-column ul li a:hover {
  color: #ff7415;
}

.divider {
  width: 1px;
  background: #000;
  margin: 0 30px;
}

.contact-btn {
  width: 200px;
  height: 50px;
  background: linear-gradient(
    180deg,
    rgba(0, 140, 30, 1) 0%,
    rgba(43, 240, 85, 1) 100%
  );
  border-radius: 70px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 120, 25, 1) 0%,
    rgba(35, 220, 75, 1) 100%
  );
  transform: translateY(-2px);
  color: white;
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: #404040;
  cursor: pointer;
  padding: 5px 10px;
}

.mobile-nav {
  background: none;
  position: relative;
  border: 2px solid #404040;
  border-radius: 20px;
  /* padding: 20px;
  margin-top: 15px; */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.show {
  max-height: 600px;
  opacity: 1;
  padding: 20px;
}

.mobile-nav-item {
  padding: 15px 20px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-nav-item:hover {
  background-color: #f5f5f5;
}

.mobile-nav-item.active {
  background-color: #f97316;
  border-radius: 50px;
}

.mobile-nav-item.active .mobile-nav-text {
  color: white;
}

.mobile-nav-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.mobile-contact-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(
    180deg,
    rgba(0, 140, 30, 1) 0%,
    rgba(43, 240, 85, 1) 100%
  );
  border-radius: 70px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
}

.mobile-contact-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 120, 25, 1) 0%,
    rgba(35, 220, 75, 1) 100%
  );
}

/* Mobile Services Dropdown */
.mobile-services-dropdown {
  display: none;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-services-dropdown.show {
  display: block;
  max-height: 400px;
  overflow-y: auto;
}

.mobile-nav-item .services-dropdown-wrapper {
  width: 100%;
}

.mobile-nav-item .nav-item,
.mobile-nav-item .nav-item-active {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  height: auto;
  display: block;
}

.mobile-nav-item .nav-text,
.mobile-nav-item .nav-text-active {
  font-size: 16px;
  font-weight: 500;
}

.mobile-dropdown-section {
  margin-bottom: 20px;
}

.mobile-dropdown-title {
  color: #ff7415;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.mobile-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown-list li {
  margin-bottom: 8px;
  text-align: center;
}

.mobile-dropdown-list li a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 5px;
  transition: color 0.2s ease;
}

.mobile-dropdown-list li a:hover {
  color: #ff7415;
}

.mobile-promo-section {
  background: linear-gradient(180deg, #eb7b0a 0%, #ffdab4 100%);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.mobile-promo-section h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.mobile-promo-section p {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
}

.mobile-promo-section .promo-btn {
  position: static;
  width: 100%;
  margin-top: 10px;
}

.container-xxl {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center;
}

@media (min-width: 1024px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 1550px) and (min-width: 1280px) {
  .logo-img {
    height: 68px;
    width: 218px;
  }

  .nav-container {
    padding: 8px;
    height: 58px;
  }

  .nav-item-active,
  .nav-item {
    padding: 8px 16px;
    height: 42px;
    min-width: 90px;
    margin-right: 8px;
  }

  .nav-text-active,
  .nav-text {
    font-size: 15px;
  }

  .contact-btn {
    width: 180px;
    height: 48px;
    font-size: 15px;
  }
  
  .services-dropdown {
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
  }

  .promo-section {
    width: 100%;
    height: 420px;
  }

  .promo-section h2 {
    font-size: 28px;
  }

  .dropdown-section-title {
    font-size: 26px;
  }

  .dropdown-column h3 {
    font-size: 16px;
  }

  .dropdown-column ul li {
    font-size: 13px;
  }
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .logo-img {
    height: 62px;
    width: 198px;
  }

  .nav-container {
    padding: 6px;
    height: 54px;
  }

  .nav-item-active,
  .nav-item {
    padding: 6px 12px;
    height: 38px;
    min-width: 80px;
    margin-right: 6px;
  }

  .nav-text-active,
  .nav-text {
    font-size: 13px;
  }

  .contact-btn {
    width: 160px;
    height: 44px;
    font-size: 13px;
  }
}

@media (max-width: 835px) {
  .header-container {
    position: relative;
    padding-top: 12px;
  }

  .logo-img {
    height: 55px;
    width: auto;
  }

  .mobile-toggle {
    display: block !important;
    font-size: 28px;
  }

  .mobile-nav-item {
    padding: 12px 15px;
  }

  .mobile-nav-text {
    font-size: 15px;
  }

  .mobile-contact-btn {
    height: 48px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .header-container {
    padding-top: 10px;
    position: relative;
  }

  .logo-img {
    height: 48px;
    width: auto;
  }

  .mobile-toggle {
    display: block !important;
    font-size: 26px;
    margin-left: 10px;
  }

  .mobile-nav-item {
    padding: 10px 12px;
    margin-bottom: 6px;
  }

  .mobile-nav-text {
    font-size: 14px;
  }

  .mobile-contact-btn {
    height: 45px;
    font-size: 14px;
    margin-top: 12px;
  }
}

@media (max-width: 400px) {
  .logo-img {
    height: 42px;
  }

  .mobile-toggle {
    font-size: 24px;
  }

  .mobile-nav-item {
    padding: 8px 10px;
  }

  .mobile-nav-text {
    font-size: 13px;
  }

  .mobile-contact-btn {
    height: 42px;
    font-size: 13px;
  }
}