.elementor-15 .elementor-element.elementor-element-c079ee8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15 .elementor-element.elementor-element-89ca044{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15 .elementor-element.elementor-element-b1e3613{padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-15 .elementor-element.elementor-element-89ca044{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-7dbfdeb *//* ╔══════════════════════════════════════════════════════╗
   SHAKTI HEADER — FINAL FIXED VERSION (ELEMENTOR SAFE)
╚══════════════════════════════════════════════════════╝ */

/* Base wrapper */
.shakti-page {
  --blue: #0082c6;
  --text-body: #212529;
  font-family: 'Figtree', sans-serif;
}

/* ================================
   HEADER / NAV
================================ */
.shakti-page .sp-nav {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999; /* FIXED */
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Prevent Elementor clipping */
.shakti-page .sp-nav,
.shakti-page .nav-inner {
  overflow: visible !important;
}

.shakti-page .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 64px;
}

/* Left */
.shakti-page .nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.shakti-page .nav-logo img {
  width: 200px;
}

/* Nav links */
.shakti-page .nav-items {
  display: flex;
  align-items: center;
  gap: 32px;
}

.shakti-page .nav-item {
  font-size: 16px;
  color: var(--text-body);
  text-decoration: none;
  cursor: pointer;
}

/* Button */
.shakti-page .btn-get-quote {
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* Right */
.shakti-page .nav-right {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

/* Hamburger */
.shakti-page .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.shakti-page .hamburger span {
  width: 24px;
  height: 2px;
  background: #000;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {

  .shakti-page .nav-inner {
    padding: 12px 20px;
  }

  .shakti-page .nav-logo img {
    width: 150px;
  }

  /* Hide desktop */
  .shakti-page .nav-items,
  .shakti-page .btn-get-quote,
  .shakti-page .nav-right {
    display: none;
  }

  /* Show hamburger */
  .shakti-page .hamburger {
    display: flex;
  }

  /* OPEN MENU (FIXED) */
  .shakti-page .nav-items.open {
    display: flex !important;
    flex-direction: column;
    gap: 16px;

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #fff;
    padding: 20px;

    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 9999;
  }
}




/* ================================
   NAV INTERACTIONS (DESKTOP + MOBILE)
================================ */

/* Smooth transition for all links */
.shakti-page .nav-item,
.shakti-page .btn-get-quote {
  transition: all 0.25s ease;
}

/* Desktop hover */
.shakti-page .nav-item:hover {
  color: var(--blue);
}

/* Active (current section or clicked) */
.shakti-page .nav-item.active {
  color: var(--blue);
  font-weight: 600;
}/* End custom CSS */