.elementor-2061 .elementor-element.elementor-element-a4e17c7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2e34d1b */.wd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.wd-header.scrolled {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(30px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* Header Background */
.wd-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.wd-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.03;
  animation: headerOrbFloat 20s ease-in-out infinite;
}

.wd-orb-1 {
  width: 200px;
  height: 200px;
  background: #8F81F8;
  top: -100px;
  left: -50px;
  animation-delay: 0s;
}

.wd-orb-2 {
  width: 150px;
  height: 150px;
  background: #A964EE;
  top: -75px;
  right: -30px;
  animation-delay: 10s;
}

.wd-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(143, 129, 248, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 129, 248, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 40s linear infinite;
}

/* Header Container */
.wd-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Logo Styles */
.wd-logo {
  position: relative;
  z-index: 2;
}

.wd-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.wd-logo-link:hover {
  transform: translateY(-2px);
}

.wd-logo-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8F81F8, #A964EE, #8F81F8);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wd-logo-link:hover .wd-logo-glow {
  opacity: 0.2;
}

.wd-logo-img {
  height: auto;
  width: 150px;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.wd-logo-sparkle {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  gap: 2px;
}

.wd-sparkle-dot {
  width: 3px;
  height: 3px;
  background: #8F81F8;
  border-radius: 50%;
  animation: sparklePulse 2s ease-in-out infinite;
}

.wd-sparkle-dot:nth-child(2) { animation-delay: 0.3s; }
.wd-sparkle-dot:nth-child(3) { animation-delay: 0.6s; }

/* Navigation Styles */
.wd-nav {
  display: flex;
  align-items: center;
}

.wd-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.wd-nav-item {
  position: relative;
}

.wd-nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e0e0f0;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Playfair Display";
}

.wd-nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.wd-nav-link.active {
  color: #8F81F8;
}

.wd-link-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wd-nav-link:hover .wd-link-glow {
  opacity: 0.15;
}

.wd-link-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8F81F8, #A964EE);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.wd-nav-link:hover .wd-link-indicator {
  width: 20px;
}

.wd-nav-link.active .wd-link-indicator {
  width: 30px;
}

/* CTA Button */
.wd-header-actions {
  position: relative;
  z-index: 2;
}

.wd-cta-button {
  background: linear-gradient(135deg, #8F81F8 0%, #A964EE 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 
    0 8px 25px rgba(143, 129, 248, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.wd-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(143, 129, 248, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.wd-cta-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8F81F8, #A964EE, #8F81F8);
  border-radius: 52px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wd-cta-button:hover .wd-cta-glow {
  opacity: 0.3;
}

.wd-cta-arrow {
  transition: transform 0.3s ease;
}

.wd-cta-button:hover .wd-cta-arrow {
  transform: translateX(5px);
}

.wd-cta-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wd-cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wd-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: buttonParticle 2s ease-out infinite;
}

.wd-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.wd-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.5s; }
.wd-particle:nth-child(3) { top: 80%; left: 40%; animation-delay: 1s; }

/* Mobile Toggle Button */
.wd-mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(143, 129, 248, 0.1);
  border: 1px solid rgba(143, 129, 248, 0.3);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wd-mobile-toggle:hover {
  background: rgba(143, 129, 248, 0.2);
  transform: scale(1.05);
}

.wd-toggle-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8F81F8, #A964EE, #8F81F8);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wd-mobile-toggle:hover .wd-toggle-glow {
  opacity: 0.2;
}

.wd-toggle-line {
  width: 20px;
  height: 2px;
  background: #e0e0f0;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.wd-mobile-toggle.active .wd-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.wd-mobile-toggle.active .wd-toggle-line:nth-child(2) {
  opacity: 0;
}

.wd-mobile-toggle.active .wd-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.wd-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-mobile-menu.active {
  transform: translateX(0);
}

.wd-mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wd-mobile-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(143, 129, 248, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: mobileOrbPulse 4s ease-in-out infinite;
}

/* Mobile Close Button */
.wd-mobile-close {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(143, 129, 248, 0.1);
  border: 1px solid rgba(143, 129, 248, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e0e0f0;
  transition: all 0.3s ease;
  z-index: 10;
}

.wd-mobile-close:hover {
  background: rgba(143, 129, 248, 0.2);
  color: #ffffff;
  transform: scale(1.05);
}

.wd-close-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8F81F8, #A964EE, #8F81F8);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wd-mobile-close:hover .wd-close-glow {
  opacity: 0.2;
}

.wd-mobile-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

.wd-mobile-list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.wd-mobile-list li {
  margin-bottom: 15px;
}

.wd-mobile-link {
  display: block;
  color: #e0e0f0;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.wd-mobile-link:hover {
  color: #8F81F8;
  transform: translateX(10px);
}

.wd-mobile-cta {
  background: linear-gradient(135deg, #8F81F8, #A964EE);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.wd-mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(143, 129, 248, 0.4);
}

/* Active Menu Indicator */
.wd-active-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #8F81F8, #A964EE);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

/* Animations */
@keyframes headerOrbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes buttonParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  50% { opacity: 1; transform: translateY(-8px) scale(1); }
  100% { opacity: 0; transform: translateY(-16px) scale(0); }
}

@keyframes mobileOrbPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wd-nav-list {
    gap: 2px;
  }
  
  .wd-nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .wd-nav-list {
    display: none;
  }
  
  .wd-mobile-toggle {
    display: flex !important;
    order: 2 !important;
    margin-left: 15px !important;
    background: rgba(143, 129, 248, 0.1) !important;

  }

  .wd-header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .wd-logo-img {
    height: 30px;
  }
  
  .wd-cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    order: 1;
  }
  
  .wd-header-actions {
    display: flex;
    align-items: center;
  }
  
  .wd-nav {
    order: 3;
  }
    .wd-header-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .wd-header-actions {
    display: none;
  }
  
  .wd-mobile-content {
    max-width: 300px;
  }
  
  .wd-mobile-link {
    font-size: 1.1rem;
    padding: 12px 0;
  }
  
  .wd-mobile-close {
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}/* End custom CSS */