.elementor-9 .elementor-element.elementor-element-4182baf{--display:flex;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-9 .elementor-element.elementor-element-1ad69ad{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;top:0px;}body:not(.rtl) .elementor-9 .elementor-element.elementor-element-1ad69ad{right:0px;}body.rtl .elementor-9 .elementor-element.elementor-element-1ad69ad{left:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-1ad69ad *//* ---------- GLOBAL ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}

/* ---------- HEADER ---------- */
.header-nav {
  background: linear-gradient(to bottom, #fffaf0, #fff4dc);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* ---------- LOGO ---------- */
.logo img {
  height: 55px;
}

/* ---------- NAV LINKS ---------- */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: all 0.4s ease;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f59e0b;
}

/* ---------- BUTTONS ---------- */
.download-btn {
  border: 1px solid #f59e0b;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #f59e0b;
  color: #fff;
}

.mobile {
  display: none;
}

/* ---------- BURGER ICON ---------- */
.menu-toggle {
  display: none; /* hidden on desktop */
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.menu-toggle:hover {
  background: #fef3c7;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #000; /* black lines */
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* --- Burger Animation --- */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- RESPONSIVE MENU ---------- */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background: rgba(255, 250, 235, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .nav-menu.show {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a {
    font-size: 18px;
    font-weight: 600;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: inline-block;
    margin-top: 25px;
  }

  /* Show burger only on mobile */
  .menu-toggle {
    display: flex;
  }
}/* End custom CSS */