* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFF8F0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-color);
}

.logo img {
  height: 50px;
  margin-right: 10px;
  border-radius: 50rem;
}

.logo-txt h2 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--main-theme-color);
}

.logo-txt h1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--main-theme-color);
}

.navlists {
  display: flex;
  align-items: center;
}

.navlists ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.navlists ul:first-child {
  margin-right: 1.5rem;
}

.navlists li {
  position: relative;
  margin: 0 0.8rem;
}

.navlists a {
  text-decoration: none;
  color: var(--heading-theme);
  font-weight: 500;
  padding: 0.5rem 0rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-poppins);
}

.navlists a:hover {
  color: #000;
}

.navlists a i {
  margin-left: 5px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.cta-list {
  display: flex;
  gap: 0.8rem;
  list-style: none;
}

.cta-btn {
  background-color: #FFF8F0;
  border: 1px solid var(--main-theme-color);
  border-radius: 50rem;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  color: var(--header-theme);
  font-weight: 600;
}

.cta-btn:hover {
  background-color: var(--main-theme-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.cta-btn i {
  margin-right: 5px;
  color: var(--main-theme-color);
}

.cta-btn:hover i {
  color: #fff;
}

/* Dropdown Styles */
.dropdown-parent {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  transition: all 0.25s ease;
}

.dropdown-container {
  padding: 1rem 0;
}

.dropdown-container ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.dropdown-container li {
  margin: 0;
}

.dropdown-container a {
  padding: 0.7rem 1.5rem;
  width: 100%;
  color: var(--text-color);
  transition: var(--transition);
}

.navlists li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header span:hover .dropdown{
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
.mobile-hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.sec-right {
  display: none;
  align-items: center;
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close icon animation */
#closeIcon {
  transition: var(--transition);
}

.mobile-hamburger.active #closeIcon {
  transform: rotate(90deg);
}