/* Start custom CSS for html, class: .elementor-element-7ad2cfb *//* ===== HEADER BASE ===== */
.vp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
}

/* INNER */
.vp-header-inner {
  max-width: 1250px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.vp-logo img {
  height: 46px;
}

.vp-logo-img {
  height: 46px;
  transition: opacity 0.35s ease, transform 0.4s ease;
  animation: logoPulse 4s ease-in-out infinite;
}

/* NAV */
.vp-nav {
  display: flex;
  gap: 34px;
}

.vp-nav a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  overflow: hidden;
}

.vp-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2fa84f, #2c7be5);
  transition: width 0.3s ease;
}

.vp-nav a:hover::after,
.vp-nav a.active::after {
  width: 100%;
}

.vp-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: translateX(-100%);
}

.vp-nav a:hover::before {
  animation: navWave 0.6s ease;
}

/* CTA */
.vp-header-cta {
  margin-left: 30px;
}

.vp-btn-header {
  position: relative;
  overflow: hidden;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2fa84f, #2c7be5);
  transition: 0.35s;
}

.vp-btn-header:hover {
  transform: translateY(-2px);
}

.vp-btn-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: 0 0 0 0 rgba(47,168,79,0.6);
  animation: ctaPulse 2.8s infinite;
}

/* MOBILE MENU ICON */
.vp-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.vp-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

/* SCROLL GLASS EFFECT */
.vp-header.scrolled {
  background: rgba(8, 32, 68, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.vp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(47,168,79,0.18),
    rgba(44,123,229,0.18),
    rgba(47,168,79,0.18)
  );
  opacity: 0;
  z-index: -1;
  animation: headerGradient 8s linear infinite;
}

.vp-header.scrolled::before {
  opacity: 1;
}

/* SCROLL PROGRESS */
.vp-scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2fa84f, #2c7be5);
  z-index: 1000;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .vp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(8, 32, 68, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 90px 30px;
    gap: 22px;
    transition: right 0.4s ease;
  }

  .vp-nav.open {
    right: 0;
  }

  .vp-header-cta {
    display: none;
  }

  .vp-menu-toggle {
    display: flex;
  }
}

/* ANIMATIONS */
.vp-header {
  animation: headerReveal 1.1s ease forwards;
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes navWave {
  to {
    transform: translateX(100%);
  }
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,168,79,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(47,168,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,168,79,0); }
}

@keyframes logoPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .vp-logo-img {
    height: 38px;
    animation: none;
  }

  .vp-btn-header::after {
    display: none;
  }

  .vp-header::before {
    display: none;
  }
}
/* ===== DEFAULT (TRANSPARENT STATE) ===== */
.vp-header {
  background: transparent;
}

/* White text on transparent */
.vp-nav a {
  color: #ffffff;
}

.vp-menu-toggle span {
  background: #ffffff;
}

/* ===== SCROLLED STATE ===== */
.vp-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

/* Dark text after scroll */
.vp-header.scrolled .vp-nav a {
  color: #0f172a;
}

.vp-header.scrolled .vp-menu-toggle span {
  background: #0f172a;
}

/* CTA stays colorful */
.vp-header.scrolled .vp-btn-header {
  color: #fff;
}
/* ===== TRANSPARENT DEFAULT ===== */
.vp-header {
  background: transparent;
}

/* white text initially */
.vp-nav a {
  color: #ffffff;
}

.vp-menu-toggle span {
  background: #ffffff;
}

/* ===== SCROLLED STATE ===== */
.vp-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

/* 🔥 DARK BLUE TEXT (NOT BLACK) */
.vp-header.scrolled .vp-nav a {
  color: #082044; /* dark blue */
}

.vp-header.scrolled .vp-menu-toggle span {
  background: #082044;
}

/* CTA stays same */
.vp-header.scrolled .vp-btn-header {
  color: #fff;
}

/* 🔒 LOGO NEVER DISAPPEARS */
.vp-logo-img {
  opacity: 1 !important;
  visibility: visible !important;
}/* End custom CSS */