 /* =========================================================
       1. DESIGN TOKENS
       ========================================================= */
    :root {
      --navy:        #06243d;
      --navy-2:      #0a2f4f;
      --blue:        #0878d6;
      --blue-2:      #0a8af0;
      --sky:         #eaf5ff;
      --orange:      #ff6b00;
      --orange-2:    #ff8530;
      --text:        #14324a;
      --muted:       #6b7c8d;
      --border:      #e5eef7;
      --white:       #ffffff;
      --bg:          #f7fbff;
      --shadow-sm:   0 4px 14px rgba(6,36,61,0.06);
      --shadow-md:   0 12px 30px rgba(6,36,61,0.10);
      --shadow-lg:   0 28px 70px rgba(0,34,80,0.16);
      --radius-sm:   10px;
      --radius-md:   14px;
      --radius-lg:   18px;
      --radius-pill: 999px;
      --ease:        cubic-bezier(.22,.61,.36,1);
      --header-h:    78px;
      --topbar-h:    36px;
    }

    .counter__item h3 span{
      color: black!important;
    }
    a { color: inherit; text-decoration: none; }

    /* =========================================================
       3. TOP CONTACT BAR
       ========================================================= */
    .top-bar {
      height: var(--topbar-h);
      background: var(--navy);
      color: #cfe2f5;
      font-size: 13px;
      display: flex;
      align-items: center;
    }
    .top-bar-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      padding: 0 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .top-bar a { transition: color .2s var(--ease); }
    .top-bar a:hover { color: var(--white); }
    .top-bar-left, .top-bar-right {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }
    .top-bar i { color: var(--orange-2); margin-right: 6px; }
    .top-bar-socials a {
      width: 26px; height: 26px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255,255,255,0.08);
      font-size: 11px;
      transition: background .2s var(--ease), transform .2s var(--ease);
          padding: 8px;
    align-items: center;
    }
    .top-bar-socials a:hover {
      background: var(--orange);
      color: var(--white);
      transform: translateY(-1px);
    }

    /* =========================================================
       4. STICKY HEADER
       ========================================================= */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid transparent;
      transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
    }
    .site-header.is-stuck {
      box-shadow: var(--shadow-sm);
      border-bottom-color: var(--border);
    }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      height: var(--header-h);
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* ---- LOGO ---- */
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .logo-mark {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--navy-2) 100%);
      color: var(--white);
      display: grid;
      place-items: center;
      
      font-weight: 800;
      font-size: 22px;
      box-shadow: 0 6px 16px rgba(8,120,214,0.30);
      letter-spacing: -1px;
    }
    .logo-text {
      
      font-weight: 800;
      font-size: 26px;
      color: var(--navy);
      letter-spacing: -1px;
      line-height: 1;
    }
    .logo-text span { color: var(--blue); }
    .logo-tagline {
      display: block;
      margin-top: 4px;
      font-size: 10.5px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.2px;
    }

    /* =========================================================
       5. PRIMARY NAVIGATION
       ========================================================= */
    .nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }
    .nav-item { position: relative; }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      border-radius: var(--radius-pill);
      transition: color .2s var(--ease), background .2s var(--ease);
      position: relative;
    }
    .nav-link i.chev {
      font-size: 10px;
      transition: transform .25s var(--ease);
    }
    .nav-item:hover > .nav-link,
    .nav-item:focus-within > .nav-link,
    .nav-link.active {
      color: var(--blue);
      background: var(--sky);
    }
    .nav-item:hover > .nav-link i.chev,
    .nav-item:focus-within > .nav-link i.chev {
      transform: rotate(180deg);
    }

    /* =========================================================
       6. MEGA MENU — Base styles (shared by all dropdowns)
       ========================================================= */
    .mega-menu {
      position: absolute;
      top: calc(100% + 14px);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
      z-index: 1010;
      display: grid;
      gap: 24px;
    }
    .mega-menu::before {
      content: "";
      position: absolute;
      top: -7px;
      width: 14px; height: 14px;
      background: var(--white);
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }

    /* ---- Large mega menu (Managed Services — centered, 3 cols) ---- */
    .mega-menu.is-lg {
      width: 1040px;
      left: 50%;
      transform: translate(-50%, 10px);
      grid-template-columns: 1fr 280px;
    }
    .mega-menu.is-lg::before {
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
    }
    .nav-item:hover > .mega-menu.is-lg,
    .nav-item:focus-within > .mega-menu.is-lg,
    .nav-item.is-open > .mega-menu.is-lg {
      opacity: 1; visibility: visible;
      transform: translate(-50%, 0);
    }
    .mega-menu.is-lg .mega-left {
      padding-right: 20px;
      border-right: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    /* ---- Medium mega menu (Contact / Solutions / Insight — right aligned) ---- */
    .mega-menu.is-md {
      width: 600px;
      right: 0;
      left: auto;
      transform: translateY(10px);
      grid-template-columns: 1fr 250px;
    }
    .mega-menu.is-md::before {
      right: 36px;
      left: auto;
      transform: rotate(45deg);
    }
    .nav-item:hover > .mega-menu.is-md,
    .nav-item:focus-within > .mega-menu.is-md,
    .nav-item.is-open > .mega-menu.is-md {
      opacity: 1; visibility: visible;
      transform: translateY(0);
    }
    .mega-menu.is-md .mega-left {
      padding-right: 20px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* =========================================================
       7. MEGA MENU — Inner content (columns, items, featured)
       ========================================================= */
    .mega-col {
      display: flex;
      flex-direction: column;
    }
    .mega-col-title {
      
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--orange);
      padding: 2px 10px 10px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 8px;
    }

    .service-item1 {
      display: flex;
      gap: 10px;
      padding: 9px 10px;
      border-radius: var(--radius-md);
      position: relative;
      transition: background .2s var(--ease), transform .2s var(--ease);
      align-items: center;
    }
    .service-item1:hover {
      background: linear-gradient(90deg, var(--sky), #ffffff);
      transform: translateX(3px);
    }
    .service-icon {
      width: 32px; height: 32px;
      flex: 0 0 32px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: var(--sky);
      color: var(--blue);
      font-size: 13px;
      transition: background .2s var(--ease), color .2s var(--ease);
    }
    .service-item1:hover .service-icon {
      background: var(--blue);
      color: var(--white);
    }
    .service-content { min-width: 0; }
    .service-content strong {
      display: block;
      color: var(--navy);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .service-item1:hover .service-content strong { color: var(--blue); }

    /* Parent rows (hub pages) — orange highlight */
    .service-item1.parent {
      background: linear-gradient(90deg, #fff7ef, #ffffff);
      margin-bottom: 6px;
    }
    .service-item1.parent .service-icon {
      background: var(--orange);
      color: var(--white);
    }
    .service-item1.parent .service-content strong {
      color: var(--navy);
      font-weight: 700;
    }
    .service-item1.parent:hover .service-icon {
      background: var(--navy);
    }

    /* Slightly larger items inside medium mega menus for readability */
    .mega-menu.is-md .service-item1 { padding: 10px 12px; }
    .mega-menu.is-md .service-content strong { font-size: 14px; }

    /* Mini stat card filling extra column space */
    .mega-mini-card {
      margin-top: auto;
      padding: 14px 12px;
      background: var(--sky);
      border-radius: var(--radius-md);
      border: 1px solid #d9ecff;
    }
    .mega-mini-card .label {
      font-size: 11px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .mega-mini-card .num {
      
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }
    .mega-mini-card .sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* ---- Featured panel (right side of every mega menu) ---- */
    .mega-right {
      padding-top: 2px;
      display: flex;
      flex-direction: column;
    }
    .eyebrow {
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 8px;
    }
    .featured-title {
      
      color: var(--navy);
      font-size: 19px;
      line-height: 1.25;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .featured-text {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-bottom: 16px;
    }
    .stats.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .stat-card {
      background: var(--sky);
      border: 1px solid #d9ecff;
      border-radius: var(--radius-md);
      padding: 10px 6px;
      text-align: center;
    }
    .stat-card strong {
      display: block;
      color: var(--blue);
      
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 2px;
    }
    .stat-card span { color: var(--muted); font-size: 10.5px; }

    .cta-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 16px;
      overflow: hidden;
      position: relative;
      margin-top: auto;
    }
    .cta-card::after {
      content: "";
      position: absolute;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      right: -40px; bottom: -40px;
    }
    .cta-card h4 {
      
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      position: relative; z-index: 1;
      color: #fff;
    }
    .cta-card p {
      color: #cfe2f5;
      font-size: 12px;
      line-height: 1.55;
      margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--orange);
      color: var(--white);
      border-radius: var(--radius-pill);
      padding: 8px 14px;
      font-size: 12.5px;
      font-weight: 700;
      position: relative; z-index: 1;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(255,107,0,0.32);
    }

    /* =========================================================
       8. HEADER RIGHT (CTA + Hamburger)
       ========================================================= */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      background: linear-gradient(135deg, var(--orange), var(--orange-2));
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-pill);
      box-shadow: 0 8px 22px rgba(255,107,0,0.28);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(255,107,0,0.40);
    }
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--navy);
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background .2s var(--ease), color .2s var(--ease);
    }
    .hamburger:hover { background: var(--sky); color: var(--blue); }

    /* =========================================================
       9. MOBILE MENU
       ========================================================= */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(380px, 100%);
      height: 100vh;
      background: var(--white);
      box-shadow: var(--shadow-lg);
      transition: right .35s var(--ease);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .mobile-menu.is-open { right: 0; }
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6,36,61,0.55);
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s var(--ease), visibility .3s var(--ease);
      z-index: 1999;
    }
    .mobile-overlay.is-open { opacity: 1; visibility: visible; }
    .mobile-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
    }
    .mobile-close {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--sky);
      color: var(--navy);
      display: grid;
      place-items: center;
      transition: background .2s var(--ease), color .2s var(--ease);
      border:none;
    }
    .mobile-close:hover { background: var(--orange); color: var(--white); }
    .mobile-nav {
      flex: 1;
      overflow-y: auto;
      padding: 12px 14px 24px;
    }
    .m-item { border-bottom: 1px solid var(--border); }
    .m-item:last-child { border-bottom: 0; }
    .m-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 12px;
      font-size: 15.5px;
      font-weight: 600;
      color: var(--navy);
      text-align: left;
      background: transparent;
          border: 1px solid #ddd;
    border-width: 0px 0px 1px 0;
    }
    .m-link .m-toggle {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--sky);
      color: var(--navy);
      display: grid;
      place-items: center;
      font-size: 11px;
      transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
    }
    .m-item.is-open > .m-link .m-toggle,
    .m-sub-item.is-open > .m-link .m-toggle {
      background: var(--blue);
      color: var(--white);
      transform: rotate(180deg);
    }
    .m-sub {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s var(--ease);
    }
    .m-item.is-open > .m-sub { max-height: 2000px; }
    .m-sub a, .m-sub > .m-sub-item > .m-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 11px 12px 11px 28px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      border-radius: 8px;
      transition: background .18s var(--ease), color .18s var(--ease);
      text-align: left;
    }
    .m-sub a:hover, .m-sub > .m-sub-item > .m-link:hover {
      background: var(--sky);
      color: var(--blue);
    }
    .m-sub-2 {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s var(--ease);
    }
    .m-sub-item.is-open > .m-sub-2 { max-height: 1000px; }
    .m-sub-2 a {
      padding-left: 44px;
      font-size: 13.5px;
      color: var(--muted);
    }
    .mobile-footer {
      padding: 18px 20px;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }
    .mobile-footer .header-cta {
      width: 100%;
      justify-content: center;
    }
    .mobile-footer p {
      font-size: 13px;
      color: var(--muted);
      margin-top: 12px;
      text-align: center;
    }
    .mobile-footer p i { color: var(--orange); margin-right: 4px; }

    /* =========================================================
       10. DEMO HERO (preview only)
       ========================================================= */
    .hero1 {
      padding: 90px 28px 110px;
      background:
        radial-gradient(circle at 20% 30%, rgba(8,120,214,0.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,107,0,0.12), transparent 55%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      color: var(--white);
      text-align: center;
    }
    .hero1 h1 {
      
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 18px;
      max-width: 900px;
      margin-inline: auto;
    }
    .hero1 h1 span {
      background: linear-gradient(135deg, #ffb672, var(--orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero1 p {
      max-width: 640px;
      margin: 0 auto 30px;
      font-size: 17px;
      color: #cfe2f5;
      line-height: 1.6;
    }
    .hero1-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero1-actions .header-cta { padding: 13px 26px; font-size: 15px; }
    .btn-ghost {
      padding: 13px 26px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.04);
      color: var(--white);
      font-weight: 600;
      font-size: 15px;
      transition: background .2s var(--ease), border-color .2s var(--ease);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }

    /* =========================================================
       11. RESPONSIVE
       ========================================================= */
    @media (max-width: 1280px) {
      .mega-menu.is-lg { width: 980px; }
    }
    @media (max-width: 1180px) {
      .mega-menu.is-lg { width: 900px; grid-template-columns: 1fr 250px; }
      .mega-menu.is-lg .mega-left { gap: 14px; }
      .mega-menu.is-md { width: 560px; grid-template-columns: 1fr 230px; }
    }
    @media (max-width: 1024px) {
      .nav { display: none; }
      .hamburger { display: inline-flex; }
      .header-cta { display: none; }
    }
    @media (max-width: 768px) {
      :root { --header-h: 70px; }
      .top-bar { display: none; }
      .header-inner { padding: 0 18px; }
      .logo-tagline { display: none; }
      .logo-text { font-size: 22px; }
      .logo-mark { width: 40px; height: 40px; font-size: 18px; }
      .hero1 { padding: 60px 18px 80px; }
    }

    /* ===== Fixed Footer Enquiry Bar ===== */
.enquiry-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  padding: 12px 15px;
  z-index: 9999;
}

.enquiry-title{
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* Inputs */
.enquiry-bar .form-control{
  height: 44px;
  border-radius: 4px;
  font-size: 14px;
}

.enquiry-bar textarea{
  height: 44px;
  resize: none;
}

/* Icons inside input */
.input-icon{
  position: relative;
}

.input-icon i{
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
}

.input-icon .form-control{
  padding-left: 38px;
}

/* Submit Button */
.enquiry-btn{
  background: #67c23a;
  color: #fff;
  border: none;
  height: 44px;
  padding: 0 26px;
  font-weight: 600;
  border-radius: 22px;
}

.enquiry-btn:hover{
  background: #5aae32;
}

/* Mobile Adjust */
@media (max-width: 767px){
  .enquiry-title{
    text-align: center;
    margin-bottom: 10px;
  }
}