:root {
 --bg: #1e2126;
 --he: linear-gradient(to right, #eb7925, #c69e41);
 --heh: linear-gradient(to right, #c69e41, #eb7925);
 --yb: 255, 193, 7;
 --dark: #2a2d34;
 --light: #f8f9fa;
 --white: #ffffff;
 --gray: #6c757d;
}
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html, body { overflow-x: hidden; }
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}
input,
textarea,
select {
  font-size: 16px;
}
@media (min-width: 991px) {
  body::after {
    content: "";
    display: block;
    height: 100vh;
  }
}
h1,h2,h3,h4,h5,h6{
  font-weight: 500;
}
span,b{
  font-weight: 500;
}
main {
  position: relative;
  z-index: 1; /* content above footer visually */
}
.dark, .dark a{
  color:#fff;
}
.light{
  color:#000;
}
.bg-dark { background-color: var(--bg);}
.bg-yellow{ --bs-bg-opacity: 1; background-color: rgba(var(--yb), var(--bs-bg-opacity)) !important; }
.bg-white{ background-color:#fff; }
.tw{ color:#fff; }
.td{ color:#000;}
.opacity{ opacity: 0.7; }
.hero-wrapper{padding-top:40px !important;}
a { text-decoration: none; color: currentColor; cursor: pointer !important; position: relative; z-index: 5;}
.row-width { width: var(--w, 100%); max-width: var(--w, 100%);}
.row-width.row-center { margin-left: auto; margin-right: auto;}
@media (max-width: 900px) {
  .row-width { width: 100%; max-width: 100%;}
}
/* FONT SIZE */
.headerHeading { font-size: 4rem; }      /* ~64px */
.mainHeading   { font-size: 2.25rem; }   /* ~36px */
.smallHeading  { font-size: 1.4375rem; } /* ~23px */
.miniHeading   { font-size: 1.125rem; }  /* ~18px */
.microHeading  { font-size: 0.875rem; }  /* ~14px */
/* Mobile */
@media (max-width: 900px) {
  .headerHeading { font-size: 2.5rem; }  /* ~40px */
  .mainHeading   { font-size: 1.875rem; }/* ~30px */
  .smallHeading  { font-size: 1.4375rem; }
  .miniHeading   { font-size: 1.125rem; }
  .microHeading  { font-size: 0.875rem; }
}
/* =================================================== SCROOL ANIMATION SECTION =================================================== */
/* Keep this */
.scroll-horizontal-exit {
  transform-origin: top center;
  will-change: transform;
}
/* TEMP: disable scroll-timeline version while using JS */
@supports (animation-timeline: scroll()) {
  /* comment this whole block out or delete it for now */
  /*
  @scroll-timeline horizontalExitTimeline {
    source: auto;
    orientation: block;
  }
  @keyframes scaleOutX {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0.9); }
  }
  .scroll-horizontal-exit {
    animation: scaleOutX linear both;
    animation-timeline: horizontalExitTimeline;
  }
  */
}
/* bUTTON */
.buttonDiv{
 display: flex;
 gap: 14px;        /* space between buttons */
 flex-wrap: wrap;
}
button,
.btn {
  display: inline-flex;
  padding: 8px 24px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-color: #FFF;
  color: #000 !important;
  transition: all 0.2s ease;
  text-decoration: none !important;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  gap: 6px;
  text-transform: uppercase;
}
button:hover, .btn:hover { background-color: #000; color: #fff !important;}
button:active, .btn:active { background-color: #000; color: #fff !important;}
.btn-gradient { background: var(--he); color: #000 !important; }
.btn-gradient:hover,
.btn-gradient:focus {
  background: var(--heh);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(199, 157, 64);
  color: #fff;
}
.btn-gradient-dark {color: #fff !important; background: linear-gradient(to right, #1d2126d1, #a17d11);}
.btn-gradient-dark:hover,
.btn-gradient-dark:focus {
  background: linear-gradient(to right, #a17d11, #1d2126d1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  color: #fff;
}
/* BUTTON SIZES */
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 18px;}
/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1320px;
}
/* Row with automatic spacing */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* <-- This makes all columns equal height */
}
/* Column base */
[class*="col-"] {
  box-sizing: border-box;
}
/* Desktop 12-column grid */
.col-1  { flex: 0 0 calc(8.333%  - 20px); }
.col-2  { flex: 0 0 calc(16.666% - 20px); }
.col-3  { flex: 0 0 calc(25%     - 20px); }
.col-4  { flex: 0 0 calc(33.333% - 20px); }
.col-5  { flex: 0 0 calc(41.666% - 20px); }
.col-6  { flex: 0 0 calc(50%     - 20px); }
.col-7  { flex: 0 0 calc(58.333% - 20px); }
.col-8  { flex: 0 0 calc(66.666% - 20px); }
.col-9  { flex: 0 0 calc(75%     - 20px); }
.col-10 { flex: 0 0 calc(83.333% - 20px); }
.col-11 { flex: 0 0 calc(91.666% - 20px); }
.col-12 { flex: 0 0 calc(100%    - 20px); }
/* Tablet */
@media (max-width: 1024px) {
  .col-md-1  { flex: 0 0 calc(8.333%  - 20px) !important; }
  .col-md-2  { flex: 0 0 calc(16.666% - 20px) !important; }
  .col-md-3  { flex: 0 0 calc(25%     - 20px) !important; }
  .col-md-4  { flex: 0 0 calc(33.333% - 20px) !important; }
  .col-md-5  { flex: 0 0 calc(41.666% - 20px) !important; }
  .col-md-6  { flex: 0 0 calc(50%     - 20px) !important; }
  .col-md-7  { flex: 0 0 calc(58.333% - 20px) !important; }
  .col-md-8  { flex: 0 0 calc(66.666% - 20px) !important; }
  .col-md-9  { flex: 0 0 calc(75%     - 20px) !important; }
  .col-md-10 { flex: 0 0 calc(83.333% - 20px) !important; }
  .col-md-11 { flex: 0 0 calc(91.666% - 20px) !important; }
  .col-md-12 { flex: 0 0 calc(100%    - 20px) !important; }
}
/* Mobile */
@media (max-width: 768px) {
  .col-sm-12 { flex: 0 0 100% !important; }   /* FIXED */
  .col-sm-6  { flex: 0 0 calc(50% - 20px) !important; }  /* balanced for gap */
}
/* JUSTIFY-CONTENT UTILITIES*/
.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-evenly { justify-content: space-evenly !important;}
.d-flex { display: flex !important; }
.d-flexWebKit { display: -webkit-box !important; }
/* SHADOW */
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.12);  }
.shadow { box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.shadow-lg { box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.shadow-xl { box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
/* Text Alignment Utilities */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }
@media (max-width: 768px) {
  .text-left-mobile { text-align: left !important; }
  .text-center-mobile { text-align: center !important; }
  .text-right-mobile { text-align: right !important; }
  .text-justify-mobile { text-align: justify !important; }
}
/* verticle middle */
.v-middle {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important; /* vertically center */
}
.middleAlign{
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .middleAlignMobile{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .v-middle-mobile {
    display: flex !important;
    justify-content: center !important; /* vertically center */
  }
}
/* RADIUS UTILITES */
.radius-none { border-radius: 0 !important; }
.radius-sm { border-radius: 4px !important; }
.radius { border-radius: 8px !important; }
.radius-md { border-radius: 12px !important; }
.radius-lg { border-radius: 18px !important; }
.radius-xl { border-radius: 30px !important; }
.radius-pill { border-radius: 50px !important; }
.radius-round { border-radius: 100% !important; /* perfect circle */ }
/* All sides */
.radius-5rem { border-radius: 5rem !important; }
.radius-tl { border-top-left-radius: 5rem !important; }
.radius-tr { border-top-right-radius: 5rem !important; }
.radius-bl { border-bottom-left-radius: 5rem !important; }
.radius-br { border-bottom-right-radius: 5rem !important; }
.radius-t { border-top-left-radius: 5rem !important; border-top-right-radius: 5rem !important; }
.radius-b { border-bottom-left-radius: 5rem !important; border-bottom-right-radius: 5rem !important; }
.radius-l { border-top-left-radius: 5rem !important; border-bottom-left-radius: 5rem !important;}
.radius-r { border-top-right-radius: 5rem !important; border-bottom-right-radius: 5rem !important;}
@media (max-width: 768px) {
  .radius-xl { border-radius: 20px !important; }
  .radius-lg { border-radius: 14px !important; }
  .radius-md { border-radius: 10px !important; }
  .radius-pill { border-radius: 40px !important; }
  .radius-round { border-radius: 50% !important; }
  .radius-5rem { border-radius: 3rem !important; }
  .radius-tl { border-top-left-radius: 3rem !important; }
  .radius-tr { border-top-right-radius: 3rem !important; }
  .radius-bl { border-bottom-left-radius: 3rem !important; }
  .radius-br { border-bottom-right-radius: 3rem !important; }
  .radius-t { border-top-left-radius: 3rem !important; border-top-right-radius: 3rem !important; }
  .radius-b { border-bottom-left-radius: 3rem !important; border-bottom-right-radius: 3rem !important; }
  .radius-l { border-top-left-radius: 3rem !important; border-bottom-left-radius: 3rem !important; }
  .radius-r { border-top-right-radius: 3rem !important; border-bottom-right-radius: 3rem !important; }
}
/* SPACING */
/* ===== PADDING (all sides) ===== */
.p-0  { padding: 0px; }
.p-xs { padding: 7px; }
.p-sm { padding: 13px; }
.p-md { padding: 25px; }
.p-lg { padding: 50px; }
.p-xl { padding: 70px; }
.pt-0  { padding-top: 0px; }
.pt-xs { padding-top: 7px; }
.pt-sm { padding-top: 13px; }
.pt-md { padding-top: 25px; }
.pt-lg { padding-top: 50px; }
.pt-xl { padding-top: 70px; }
.pb-0  { padding-bottom: 0px; }
.pb-xs { padding-bottom: 7px; }
.pb-sm { padding-bottom: 13px; }
.pb-md { padding-bottom: 25px; }
.pb-lg { padding-bottom: 50px; }
.pb-xl { padding-bottom: 70px; }
.ps-0  { padding-left: 0px; }
.ps-xs { padding-left: 7px; }
.ps-sm { padding-left: 13px; }
.ps-md { padding-left: 25px; }
.ps-lg { padding-left: 50px; }
.ps-xl { padding-left: 70px; }
.pe-0  { padding-right: 0px; }
.pe-xs { padding-right: 7px; }
.pe-sm { padding-right: 13px; }
.pe-md { padding-right: 25px; }
.pe-lg { padding-right: 50px; }
.pe-xl { padding-right: 70px; }
.py-0  { padding-top: 0px;   padding-bottom: 0px; }
.py-xs { padding-top: 7px;   padding-bottom: 7px; }
.py-sm { padding-top: 10px;  padding-bottom: 10px; }
.py-md { padding-top: 25px;  padding-bottom: 25px; }
.py-lg { padding-top: 50px;  padding-bottom: 50px; }
.py-xl { padding-top: 70px;  padding-bottom: 70px; }
.px-0  { padding-left: 0px;   padding-right: 0px; }
.px-xs { padding-left: 7px;   padding-right: 7px; }
.px-sm { padding-left: 10px;  padding-right: 10px; }
.px-md { padding-left: 25px;  padding-right: 25px; }
.px-lg { padding-left: 50px;  padding-right: 50px; }
.px-xl { padding-left: 70px;  padding-right: 70px; }
.m-0  { margin: 0px; }
.m-xs { margin: 7px; }
.m-sm { margin: 13px; }
.m-md { margin: 25px; }
.m-lg { margin: 50px; }
.m-xl { margin: 70px; }
.mt-0  { margin-top: 0px; }
.mt-xs { margin-top: 7px; }
.mt-sm { margin-top: 13px; }
.mt-md { margin-top: 25px; }
.mt-lg { margin-top: 50px; }
.mt-xl { margin-top: 70px; }
.mb-0  { margin-bottom: 0px; }
.mb-xs { margin-bottom: 7px; }
.mb-sm { margin-bottom: 13px; }
.mb-md { margin-bottom: 25px; }
.mb-lg { margin-bottom: 50px; }
.mb-xl { margin-bottom: 70px; }
.ms-0  { margin-left: 0px; }
.ms-xs { margin-left: 7px; }
.ms-sm { margin-left: 13px; }
.ms-md { margin-left: 25px; }
.ms-lg { margin-left: 50px; }
.ms-xl { margin-left: 70px; }
.me-0  { margin-right: 0px; }
.me-xs { margin-right: 7px; }
.me-sm { margin-right: 13px; }
.me-md { margin-right: 25px; }
.me-lg { margin-right: 50px; }
.me-xl { margin-right: 70px; }
.my-0  { margin-top: 0px;   margin-bottom: 0px; }
.my-xs { margin-top: 7px;   margin-bottom: 7px; }
.my-sm { margin-top: 13px;  margin-bottom: 13px; }
.my-md { margin-top: 25px;  margin-bottom: 25px; }
.my-lg { margin-top: 50px;  margin-bottom: 50px; }
.my-xl { margin-top: 70px;  margin-bottom: 70px; }
.my-0  { margin-top: 0px;   margin-bottom: 0px; }
.mx-xs { margin-left: 7px;   margin-right: 7px; }
.mx-sm { margin-left: 13px;  margin-right: 13px; }
.mx-md { margin-left: 25px;  margin-right: 25px; }
.mx-lg { margin-left: 50px;  margin-right: 50px; }
.mx-xl { margin-left: 70px;  margin-right: 70px; }
/* Mobile */
@media (max-width: 800px) {
  .p-0  { padding: 0px; }
  .p-xs { padding: 7px; }
  .p-sm { padding: 13px; }
  .p-md { padding: 25px; }
  .servicesSection .p-md {padding: 25px 9px;}
  .p-lg { padding: 15px; }
  .p-xl { padding: 20px; }
  .px-0  { padding-left: 0px;   padding-right: 0px; }
  .px-xs { padding-left: 7px;   padding-right: 7px; }
  .px-sm { padding-left: 10px;  padding-right: 10px; }
  .px-md { padding-left: 25px;  padding-right: 25px; }
  .px-lg { padding-left: 15px;  padding-right: 15px; }
  .px-xl { padding-left: 20px;  padding-right: 20px; }
  .m-0  { margin: 0px; }
  .m-xs { margin: 7px; }
  .m-sm { margin: 13px; }
  .m-md { margin: 25px; }
  .m-lg { margin: 15px; }
  .m-xl { margin: 20px; }
  .my-0  { margin-top: 0px;   margin-bottom: 0px; }
  .my-xs { margin-top: 7px;   margin-bottom: 7px; }
  .my-sm { margin-top: 13px;  margin-bottom: 13px; }
  .my-md { margin-top: 25px;  margin-bottom: 25px; }
  .my-lg { margin-top: 15px;  margin-bottom: 15px; }
  .my-xl { margin-top: 20px;  margin-bottom: 20px; }
}
/* Tabs */
.tabs { transition: all 0.3s ease; }
.tabs:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
 border: 1px solid #ffcc3a69;
}
 /*
       CUSTOM ACCORDION */
       .acc-item {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        margin-bottom: 15px;
        cursor: pointer;
        overflow: hidden;
      }
      .acc-header {
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .acc-icon {
        transition: transform .3s ease;
      }
      .acc-body {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height .3s ease;
      }
      .acc-body p {
        padding: 15px 0;
        opacity: .7;
      }
      .acc-item.active .acc-body {
        max-height: 350px;
      }
      .acc-item.active .acc-icon {
        transform: rotate(90deg);
      }
/* =================================================== FOOTER SECTION =================================================== */
/* === STATIC BACKGROUND FOOTER BEHIND CONTENT === */
/* ================================
   FULL SCREEN FOOTER (BEHIND SITE)
   ================================ */
/* FIXED BACKGROUND LAYER */
/* FOOTER CONTENT */
@media (min-width: 991px) {
  .footer-section {
    position: fixed;
    height: 100vh;
  }
}
.footer-section {
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 0; /* keeps footer below main but still clickable */
  pointer-events: auto;
}
/* Allow internal content to be clickable */
.footer-section .container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  max-width: 95%;
}
/* FOOTER CONTENT STYLES */
/* Newsletter form */
.footer-newsletter input {
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}
.footer-newsletter input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}
/* Link styling */
.footer-link {
  display: inline-block;
  position: relative;
  color: rgba(30, 33, 38, 0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 11px 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #1e2126;
  transition: width 0.3s ease;
}
.footer-link:hover::after {
  width: 100%;
}
.footer-link:hover {
  color: #000;
}
/* 2 column spacing */
.footer-links-two-col .row {
  justify-content: space-between;
  align-items: flex-start;
}
/* MOBILE: stack columns */
@media (max-width: 576px) {
  .footer-links-two-col .col-6 {
    text-align: center;
    margin-bottom: 1rem;
  }
  footer .headerHeading{
    font-size: 30px !important;
  }
  footer .mb-xl {
    margin-bottom: 40px;
  }
}
/* Social Icons */
.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  border: 2px solid rgba(0,0,0,0.05);
  margin: 3px;
}
.footer-social svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.footer-social:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.22);
}
.footer-social:hover svg {
  transform: scale(1.15);
}
/* ===========================
   MOBILE FALLBACK
   =========================== */
   @media (max-width: 767px) {
   }
/* =============================================================
   MENU
   ============================================================= */
/* ===== NAVBAR CONTAINER ===== */
.falux-nav {
 background: var(--dark);
 padding: 0.75rem 0;
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 z-index: 1000;
 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/* ===== BRAND/LOGO ===== */
.brand-logo {
  margin-right: 0.5rem;
}
/* ===== NAV ACTIONS (Desktop) ===== */
.nav-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}
.quote-btn svg {
  stroke: currentColor;
}
/* ===== TOGGLER BUTTON ===== */
.nav-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.toggler-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
/* ===== NAV MENU ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-link {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--transition);
  font-weight: 500;
}
.nav-link:hover {
  color: #c8c1c1;
}
/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
  position: relative;
}
.mega-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.caret-icon {
  font-size: 0.8em;
}
/* ===== DESKTOP MEGA MENUS ===== */
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}
.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-container {
  width: 100%;
  padding: 0 1rem;
}
/* ===== SERVICES MEGA MENU ===== */
.services-mega {
  background: linear-gradient(135deg, var(--white), #fafafa);
  min-height: 460px;
}
.mega-row {
  display: flex;
  gap: 0;
}
.mega-sidebar {
  flex: 0 0 33.333%;
  background: var(--white);
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}
.sidebar-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.stack-item:hover,
.stack-item.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.item-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.stack-item:hover .item-icon svg,
.stack-item.active .item-icon svg {
  stroke: #fff;
}
.item-label {
  font-size: 0.9rem;
  flex: 1;
  font-weight: 500;
}
.mega-content {
  flex: 1;
  padding: 1.5rem;
}
.content-panel {
  display: none;
  animation: fadeSlide 0.3s ease;
}
.content-panel.active {
  display: block;
}
.panel-title {
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-title svg {
  overflow: visible;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.sub-item {
  text-decoration: none;
  color: var(--dark);
}
.sub-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  transition: var(--transition);
  height: 100%;
}
.sub-card span {
  font-weight: 500;
}
.sub-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* ===== SECTORS MEGA MENU ===== */
.sectors-mega {
  padding: 1.5rem 0;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}
/* Make single items in the last row span full width */
.sector-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  text-align: center;
}
.sector-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: var(--transition);
}
.sector-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.sector-title {
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 0.5rem;
}
.sector-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0;
}
.sector-link span {
  font-weight: 500;
}
.sector-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.82rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  transition: var(--transition);
  word-wrap: break-word;
  white-space: normal;
}
.sector-link:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* ===== MOBILE QUOTE BUTTON ===== */
.nav-actions-mobile {
  display: none;
}
.quote-btn-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  margin-top: 1rem;
  justify-content: center;
}
.quote-btn-mobile svg {
  stroke: currentColor;
}
/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .brand-logo {
    width:6rem;
  }
  .nav-actions-mobile .btn-sm{
    padding: 8px 16px;
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  .nav-actions {
    display: flex;
    margin-left: auto;
    margin-right: 1rem;
  }
  .nav-toggler {
    display: flex;
  }
  #navMenu span {
    font-weight: 400;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #343a40;
    padding: 1rem;
    z-index: 1000;
    overflow-y: auto;
    flex-direction: column;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px dotted #959090;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-link {
    display: block;
    padding: 0.5rem;
    width: 100%;
    color: #333;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
  }
/* Hide all mega menus on mobile */
.mega-menu {
 display: none !important;
}
/* Simple mobile menu */
.mobile-menu {
 display: none;
 background: transparent;
}
.mobile-sec {
 padding-left: 27px;
 background: #e8e8e8 !important;
}
.mega-dropdown.active .mobile-menu {
 display: block;
}
/* Show sub-sections as nested lists */
.mobile-level {
 display: none;
 background: #f8f9fa;
}
.mobile-level.active {
 display: block;
}
.mobile-item {
 display: block;
 padding: 0.5rem;
 text-decoration: none;
 border-bottom: 1px solid #ddd;
 width: 100%;
 text-align: left;
 background: none;
}
.mobile-item .item-content {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}
.mobile-item .item-icon {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 width: 20px;
 height: 20px;
}
.mobile-item .item-icon svg {
 width: 100%;
 height: 100%;
 display: block;
 overflow: visible;
}
.mobile-item.has-children {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background: #f8f9fa;
}
.arrow {
 font-size: 0.8em;
}
/* Show mobile quote button inside menu */
.nav-actions-mobile {
 display: block;
 margin-right: 1rem;
 margin-left: auto;
}
/* Hide desktop quote button on mobile */
.nav-actions {
 display: none;
}
}
/* ===== DESKTOP-ONLY STYLES ===== */
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .nav-actions-mobile {
    display: none !important;
  }
  .nav-actions {
    display: flex;
  }
}
/* ===== NO ITEMS STYLE ===== */
.no-items {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
  padding: 0.75rem;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===== ACTIVE NAV ITEM STYLES ===== */
.nav-link {
  color: #c8c1c1;
  font-weight: 400;
  position: relative;
}
.nav-item.active {
  font-weight: 400;
  position: relative;
}
.nav-item.active .nav-link{
 color:#fff;
}
/* Mobile active states */
@media (max-width: 991px) {
  .nav-item.active .nav-link {
    border-left: 3px solid var(--primary);
  }
  .nav-item.active .nav-link::after {
    display: none;
  }
}
/* Services Dual-Side Active States */
/* Dropdown Active States */
/* Service dropdown active states */
.stack-item.active .item-icon svg,
.sub-item.active svg {
  stroke: white !important;
}
/* Sector dropdown active states */
.sector-link.active svg {
  stroke: white !important;
}
/* Mobile dropdown active states */
.mobile-item.active {
  background: var(--he) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  border: 0px !important;
  opacity:1;
}
.mobile-item.active .item-icon svg {
  stroke: white !important;
}
/* Overview link active state */
.mobile-item.overview-link.active {
  background: rgba(37, 99, 235, 0.2) !important;
  color: #2563eb !important;
  border-left: 3px solid #2563eb !important;
}
.mobile-item.overview-link.active .item-icon svg {
  stroke: #2563eb !important;
}
.stack-item.active ,
.sector-link.active{
 background: var(--he) !important;
 color: white !important;
 transform: translateY(-2px);
 box-shadow: 0 8px 18px rgba(0,0,0,0.1);
 border: 0px !important;
}
.stack-item.active .item-icon svg {
  stroke: white !important;
}
.content-panel.active {
  display: block !important;
}
/* Sub-service active state in right panel */
.sub-item.active .sub-card{
 background: var(--he) !important;
 color: white !important;
 transform: translateY(-2px);
 box-shadow: 0 8px 18px rgba(0,0,0,0.1);
 opacity: 1;
}
.sub-item.active .sub-card svg {
  stroke: white !important;
}
/* Keep the hover effects for non-active items */
.stack-item:not(.active):hover,
.sub-item:not(.active):hover .sub-card {
  background: #f8f9fa !important;
  color: #212529 !important;
  border-color: #dee2e6 !important;
}
.stack-item:not(.active):hover .item-icon svg,
.sub-item:not(.active):hover .sub-card svg {
  stroke: #212529 !important;
}
