/* Start custom CSS for html, class: .elementor-element-08efb23 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
}

.ambition-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05); /* transparent */
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 15px 30px;
  transition: all 0.3s ease;
}

.ambition-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #42292F;
}

.nav-desktop {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  color: #42292F;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: #A1454F;
}

.insta-icon {
  color: #42292F;
  font-size: 1.2rem;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ccc;
  color: #42292F;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
}

.nav-mobile a {
  padding: 15px;
  color: #42292F;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop,
  .insta-icon {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-mobile.show {
    display: flex;
  }

  .logo {
    font-size: 1.2rem;
  }
}/* End custom CSS */