/* =========================================================
   Shared Header + Compact Mega Menus
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background:
    linear-gradient(
      135deg,
      rgba(70, 55, 111, .97),
      rgba(98, 82, 143, .97)
    );

  backdrop-filter:
    blur(18px);

  border-color:
    rgba(255,255,255,.10);

  box-shadow:
    0 12px 35px
    rgba(48,35,79,.18);
}

/* =========================================================
   PREMIUM NAVIGATION
========================================================= */

.nav-link {
  position: relative;

  transition:
    color .25s ease;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 14px;
  right: 14px;
  bottom: 12px;

  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #f0bd2d,
      #ffffff
    );

  transform:
    scaleX(0);

  transform-origin:
    left;

  transition:
    transform .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform:
    scaleX(1);
}

.site-header.scrolled .nav-link {
  color:
    rgba(255,255,255,.90)
    !important;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color:
    #ffffff
    !important;
}

.navbar {
  min-height: 104px;
  padding: 0;
  transition: min-height 0.25s ease;
}

.site-header.scrolled .navbar {
  min-height: 82px;
}

.nav-shell {
  position: relative;
}

.brand-logo {
  width: 205px;
  height: auto;
  object-fit: contain;
  transition: width 0.25s ease;
}

.site-header.scrolled .brand-logo {
  width: 185px;
}

/* =========================================================
   Navbar Toggler
   ========================================================= */

.navbar-toggler {
  border: 0;
  padding: 10px;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: #283145;
  margin: 5px 0;
  border-radius: 2px;
}

/* =========================================================
   Navigation Links
   ========================================================= */

.nav-link {
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.015em;
  color: #273044 !important;
  padding: 20px 14px !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.mega-link i {
  font-style: normal;
  font-size: 1rem;
  margin-left: 3px;
}

/* =========================================================
   Mega Menu
   ========================================================= */

.nav-item.mega-trigger {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  background: #fff;
  border: 1px solid rgba(49, 55, 78, 0.1);
  box-shadow: 0 24px 55px rgba(26, 30, 48, 0.16);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.mega-menu.show {
  display: flex;
}

.mega-list {
  width: 48%;
  padding: 8px 0;
  background: #fff;
  border-right: 1px solid var(--line);
}

.mega-preview {
  width: 52%;
  padding: 0;
  background: linear-gradient(
    145deg,
    #faf9fd,
    #f3f5fb
  );
}

/* =========================================================
   Mega Menu Items
   ========================================================= */

.mega-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  cursor: pointer;
  color: #31394b;
  transition: all 0.2s ease;
}

.mega-item:hover,
.mega-item.active {
  background: linear-gradient(
    90deg,
    var(--primary),
    #7a6aa4
  );
  color: #fff;
}

/* =========================================================
   Mega Sub Menu
   ========================================================= */

.mega-sub {
  display: none;
  height: 100%;
  min-height: 245px;
}

.mega-sub.active {
  display: block;
}

.mega-art {
  height: 74px;
  padding: 10px 18px 0;
  overflow: hidden;
}

.mega-art img {
  height: 68px;
  width: 90px;
  object-fit: contain;
  float: right;
  opacity: 0.88;
}

.mega-copy {
  padding: 0 20px 14px;
}

.mega-kicker {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 800;
  margin: 4px 0 8px;
}

.mega-sub a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #e6e4eb;
  font-weight: 700;
  font-size: 0.79rem;
  color: #42495b;
  line-height: 1.35;
}

.mega-sub a:hover {
  color: var(--primary);
}

.mega-sub a:last-child {
  border-bottom: 0;
}

/* =========================================================
   Compact Mega Menu
   ========================================================= */

.mega-compact {
  width: 500px;
}

.mega-compact .single-list {
  width: 56%;
  border-right: 1px solid var(--line);
}

.mega-direct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #353d4d;
  border-bottom: 1px solid #eceaf0;
}

.mega-direct:hover {
  background: #f2eff9;
  color: var(--primary);
}

/* =========================================================
   Compact Mega Menu Side Artwork
   ========================================================= */

.mega-side-art {
  width: 44%;
  padding: 16px;
  background: linear-gradient(
    145deg,
    #f8f7fc,
    #eef2fb
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-side-art img {
  height: 82px;
  object-fit: contain;
  margin-bottom: 8px;
}

.mega-side-art strong {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #4a5162;
}

/* =========================================================
   Header Actions
   ========================================================= */

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: 14px;
}

.nav-cta,
.nav-dashboard {
  padding: 13px 22px !important;
  min-width: 132px;
}

.nav-dashboard {
  min-width: 170px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: #202431;
  color: #e8e9ef;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer p,
.footer a {
  color: #b9c0cf;
}

.footer a:hover {
  color: #fff;
}

.footer-top {
  padding: 68px 0 42px;
}

.footer-logo {
  width: 185px;
  height: auto;
  filter: brightness(1.12);
}

.footer h6 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 16px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
}

/* =========================================================
   Newsletter
   ========================================================= */

.newsletter {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

/* =========================================================
   Footer Bottom
   ========================================================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.82rem;
}

.social-links a {
  font-weight: 700;
}

/* =========================================================
   Tablet / Small Desktop
   ========================================================= */

@media (max-width: 1199px) {
  .brand-logo {
    width: 175px;
  }

  .nav-link {
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 0.8rem;
  }

  .nav-cta {
    min-width: auto;
  }

  .nav-dashboard {
    display: none;
  }
}

/* =========================================================
   Mobile / Tablet
   ========================================================= */

@media (max-width: 991px) {
  .site-header,
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(25, 31, 50, 0.07);
  }

  .navbar,
  .site-header.scrolled .navbar {
    min-height: 76px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 160px;
  }

  /* Mobile Navigation */

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--line);
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 10px 0 18px;
  }

  .nav-link {
    padding: 11px 18px !important;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  /* Mobile Mega Menus */

  .mega-menu,
  .mega-compact {
    position: static;
    transform: none;
    width: calc(100% - 24px);
    margin: 0 12px 8px;
    border-radius: 14px;
    box-shadow: none;
  }

  .mega-menu.show {
    display: block;
  }

  .mega-list,
  .mega-compact .single-list {
    width: 100%;
    border: 0;
  }

  .mega-preview,
  .mega-side-art {
    display: none;
  }

  .mega-item {
    padding: 13px 16px;
  }

  /* Header Actions */

  .header-actions {
    margin: 12px 18px 0;
  }

  .nav-dashboard {
    display: block;
  }

  /* Footer */

  .footer-top {
    padding-top: 50px;
  }
}


.nwspl-page-loader{position:fixed;inset:0;z-index:99999;background:#fff;display:grid;place-items:center;transition:opacity .55s ease,visibility .55s ease}
.nwspl-page-loader.loaded{opacity:0;visibility:hidden}
.nwspl-loader-inner{text-align:center}.nwspl-loader-logo{width:95px;height:auto;display:block;margin:0 auto 18px}.nwspl-loader-line{width:130px;height:3px;border-radius:5px;background:#ece8f6;overflow:hidden}.nwspl-loader-line i{display:block;width:45%;height:100%;background:linear-gradient(90deg,#60479c,#e1b331);animation:nwsplLoad 1.05s ease-in-out infinite}
@keyframes nwsplLoad{0%{transform:translateX(-110%)}100%{transform:translateX(290%)}}
