/* header */



  *, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  html, body { overflow-x: hidden; }
  body { font-family: 'Nunito Sans', sans-serif; }

  :root {
    --nr-navy:    #1a3a6b;
    --nr-navy2:   #122856;
    --nr-gold:    #f0b429;
    --nr-gold2:   #f5cc6a;
    --nr-green:   #3a8c2f;
    --nr-green2:  #52b341;
    --nr-white:   #ffffff;
    --nr-light:   #f4f7fb;
    --nr-text:    #1c2b3a;
    --nr-muted:   #5a6a7e;
    --nr-border:  #dce6f0;
    --nr-shadow:  0 4px 24px rgba(26,58,107,0.10);
  }

  /* ==================================================
     TOP BAR
  ================================================== */
  .nr-topbar-wrap {
    background: linear-gradient(90deg, var(--nr-navy2) 0%, #1e4280 60%, var(--nr-navy) 100%)
    ;
    border-bottom: 2px solid var(--nr-gold);
  }

  .nr-topbar {
    max-width: 1280px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    overflow: hidden;
  }

  /* Ticker */
  .nr-ticker-area {
    overflow: hidden;
    max-width: 680px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
  }
  .nr-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: nrTick 38s linear infinite;
    pointer-events: all;
  }
  .nr-ticker-track:hover { animation-play-state: paused; }
  .nr-ticker-item {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.80);
    padding: 0 28px;
    letter-spacing: 0.03em;
  }
  .nr-ticker-item a {
    color: var(--nr-gold);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
  }
  .nr-ticker-item a:hover { color: var(--nr-gold2); text-decoration: underline; }
  .nr-ticker-sep { color: rgba(255,255,255,0.25); font-size: 12px; }

  @keyframes nrTick {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Right side */
  .nr-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .nr-topbar-right a {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nr-topbar-right a:hover { color: var(--nr-gold); }
  .nr-top-sep { color: rgba(255,255,255,0.2); font-size: 13px; }

  /* Quote Btn top */
  .nr-quote-topbtn {
    background: var(--nr-gold);
    color: var(--nr-navy2) !important;
    padding: 5px 14px !important;
    border-radius: 20px;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .top-call-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: #e9edf2;*/
  padding: 12px 0;
  /*border-top: 1px solid #ccc;*/
}

.call-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f6f82;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.call-icon {
 transform: rotate(90deg);
  font-size: 18px;
  color: #5f6f82;
}

.call-text {
  letter-spacing: 0.5px;
  font-size:18px;
}

/* hover effect */
.call-link:hover {
  color: #000;
}
  .nr-quote-topbtn:hover {
    background: var(--nr-gold2) !important;
    color: var(--nr-navy2) !important;
    transform: translateY(-1px);
  }

  /* ==================================================
     MAIN NAVBAR
  ================================================== */
  .nr-navbar {
    background: var(--nr-white);
    border-bottom: 1px solid var(--nr-border);
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: var(--nr-shadow);
  }

  .nr-navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
  }

  /* ---- LOGO (updated) ---- */
  .nr-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding-right: 36px;
    gap: 12px;
padding-bottom:10px;
  }

  /* Logo image box */
  .nr-logo-imgbox {
       width: 72px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 100%);
    border: 1.5px solid var(--nr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .nr-logo-imgbox img {
  height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* Logo text next to image */
  .nr-logo-textblock {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nr-logo-name {
       font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--nr-navy);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .nr-logo-name span {
    color: var(--nr-gold);
  }
  .nr-logo-tagline {
   display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--nr-green);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
  }
  .nr-logo-tagline::before,
  .nr-logo-tagline::after {
    content: '';
    width: 14px;
    height: 2px;
    background: var(--nr-gold);
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
  }

  /* Nav */
  .nr-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    height: 74px;
    gap: 0;
  }
  .nr-nav > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .nr-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--nr-text);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    box-sizing: border-box;
    position: relative;
  }
  .nr-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .nr-nav > li > a:hover::after,
  .nr-nav > li > a.active::after { transform: scaleX(1); }
  .nr-nav > li > a:hover,
  .nr-nav > li > a.active { color: var(--nr-navy); }

  .nr-nav > li > a i {
    font-size: 9px;
    color: var(--nr-gold);
    transition: transform 0.25s;
  }
  .nr-nav > li:hover > a i { transform: rotate(180deg); }

  /* Dropdown */
  .nr-has-drop { position: relative; }

  .nr-drop-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--nr-white);
    border: 1px solid var(--nr-border);
    border-top: 3px solid var(--nr-gold);
    min-width: 230px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.22s ease;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(26,58,107,0.13);
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--nr-gold) transparent;
  }
  .nr-drop-menu::-webkit-scrollbar { width: 5px; }
  .nr-drop-menu::-webkit-scrollbar-track { background: transparent; }
  .nr-drop-menu::-webkit-scrollbar-thumb { background: var(--nr-gold); border-radius: 10px; }

  .nr-has-drop:hover .nr-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nr-drop-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--nr-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s;
    font-weight: 600;
  }
  .nr-drop-menu a::before {
    content: '›';
    color: var(--nr-gold);
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
  }
  .nr-drop-menu a:hover {
    background: var(--nr-light);
    color: var(--nr-navy);
    border-left-color: var(--nr-gold);
    padding-left: 24px;
  }
  .nr-drop-divider { height: 1px; background: var(--nr-border); margin: 4px 0; }
  .nr-drop-viewall {
    color: var(--nr-navy) !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #f0f6ff, #fff8e8) !important;
  }

  /* Right Icons */
  .nr-nav-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 12px;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .nr-icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--nr-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 17px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .nr-icon-btn:hover { color: var(--nr-navy); background: var(--nr-light); }

  /* Social icons */
  .nr-top-social {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nr-top-social a {
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nr-muted);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 15px;
    border: 1.5px solid var(--nr-border);
  }
  .nr-top-social a:hover {
    background: var(--nr-navy);
    color: var(--nr-gold);
    border-color: var(--nr-navy);
    transform: translateY(-2px);
  }

  /* Search */
  .nr-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nr-search-input {
    width: 0;
    overflow: hidden;
    opacity: 0;
    border: none;
    border-bottom: 2px solid var(--nr-gold);
    background: transparent;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--nr-text);
    padding: 4px 6px;
    outline: none;
    transition: width 0.3s ease, opacity 0.3s ease;
  }
  .nr-search-wrap.open .nr-search-input { width: 150px; opacity: 1; }

  /* Hamburger */
  .nr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: 1.5px solid var(--nr-border);
    border-radius: 8px;
  }
  .nr-hamburger span {
    width: 20px; height: 2px;
    background: var(--nr-navy);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
  }
  .nr-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nr-hamburger.open span:nth-child(2) { opacity: 0; }
  .nr-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ==================================================
     SIDEBAR
  ================================================== */
  .nr-overlay {
    position: fixed; inset: 0;
    background: rgba(26,58,107,0.55);
    z-index: 1100;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
  }
  .nr-overlay.open { opacity: 1; visibility: visible; }

  .nr-sidebar {
    position: fixed;
    right: 0; top: 0;
    width: 280px; height: 100%;
    background: var(--nr-white);
    z-index: 1101;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    border-left: 3px solid var(--nr-gold);
    display: flex;
    flex-direction: column;
  }
  .nr-sidebar.open { transform: translateX(0); }

  .nr-sb-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--nr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--nr-navy2) 0%, #1e4280 100%);
  }
  .nr-sb-head img { height: 38px; width: auto; object-fit: contain; }

  .nr-sb-close {
    width: 32px; height: 32px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #aaa;
    cursor: pointer;
    background: transparent;
    font-size: 15px;
    transition: all 0.2s;
  }
  .nr-sb-close:hover { border-color: var(--nr-gold); color: var(--nr-gold); }

  .nr-sb-nav { flex: 1; padding: 10px 0; overflow-y: auto; }
  .nr-sb-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    color: var(--nr-text);
    font-size: 13px;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    transition: all 0.2s;
  }
  .nr-sb-nav a i {
    font-size: 15px;
    width: 18px;
    text-align: center;
    color: var(--nr-gold);
  }
  .nr-sb-nav a:hover {
    color: var(--nr-navy);
    border-left-color: var(--nr-gold);
    background: var(--nr-light);
    padding-left: 28px;
  }

  .nr-sb-foot {
    padding: 14px 18px;
    border-top: 1px solid var(--nr-border);
  }
  .nr-sb-foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--nr-navy), #1e4280);
    color: var(--nr-gold);
    padding: 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 1.5px solid var(--nr-navy);
  }
  .nr-sb-foot a:hover {
    background: var(--nr-gold);
    color: var(--nr-navy2);
    border-color: var(--nr-gold);
  }

  /* ==================================================
     MOBILE BOTTOM NAV
  ================================================== */
  .nr-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--nr-white);
    border-top: 2px solid var(--nr-gold);
    z-index: 990;
    padding: 4px 0 calc(4px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(26,58,107,0.10);
  }
  .nr-mobile-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
  }
  .nr-mobile-nav ul li a,
  .nr-mobile-nav ul li button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--nr-muted);
    font-size: 9px;
    text-decoration: none;
    padding: 4px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nr-mobile-nav ul li a:hover,
  .nr-mobile-nav ul li a.active,
  .nr-mobile-nav ul li button:hover { color: var(--nr-navy); }
  .nr-mobile-nav ul li a i,
  .nr-mobile-nav ul li button i { font-size: 20px; color: var(--nr-gold); }

  /* ==================================================
     QUOTE MODAL
  ================================================== */
  .quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(26,58,107,0.55);
  }
  .quote-box {
    background: #ffffff;
    width: 400px;
    padding: 32px 28px 24px;
    border-radius: 14px;
    margin: 7% auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(26,58,107,0.22);
    animation: nrPopupFade 0.3s ease;
    border-top: 4px solid var(--nr-gold);
  }
  .quote-box h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--nr-navy);
    text-align: center;
    letter-spacing: 0.01em;
  }
  .quote-box input,
  .quote-box textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--nr-border);
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--nr-text);
    transition: 0.3s;
    background: var(--nr-light);
  }
  .quote-box input:focus,
  .quote-box textarea:focus {
    border-color: var(--nr-navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,58,107,0.10);
    background: #fff;
  }
  .quote-box textarea { resize: none; height: 82px; }
  .quote-box button {
    background: linear-gradient(135deg, var(--nr-navy), #1e4280);
    color: var(--nr-gold);
    padding: 13px;
    border: none;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: 0.25s;
    font-family: 'Nunito Sans', sans-serif;
  }
  .quote-box button:hover {
    background: var(--nr-gold);
    color: var(--nr-navy2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,180,41,0.30);
  }
  .close-btn {
    position: absolute;
    right: 14px; top: 12px;
    cursor: pointer;
    font-size: 22px;
    color: var(--nr-muted);
    line-height: 1;
    transition: 0.2s;
  }
  .close-btn:hover { color: var(--nr-navy); transform: rotate(90deg); }

  @keyframes nrPopupFade {
    from { opacity: 0; transform: translateY(-20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ==================================================
     RESPONSIVE
  ================================================== */
  @media (max-width: 1024px) {
    .nr-nav, .nr-search-wrap { display: none !important; }
    .nr-hamburger { display: flex; }
    .nr-navbar-inner { grid-template-columns: 1fr auto; }
  }

  @media (max-width: 768px) {
    .nr-top-social { display: none !important; }
    .nr-mobile-nav { display: block; }
    body { padding-bottom: 68px; }

    .nr-topbar { flex-wrap: wrap; height: auto; padding: 6px 12px; }
    .nr-ticker-area { display: none !important; }
    .nr-topbar-right { width: 100%; justify-content: space-between; }

    .nr-navbar-inner { height: 62px; padding: 0 14px; }
    .nr-logo-imgbox { width: 40px; height: 40px; border-radius: 8px; }
    .nr-logo-imgbox img { height: 34px; }
    .nr-logo-name { font-size: 14px; }
    .nr-logo-tagline { font-size: 9px; }
    .nr-logo-tagline::before, .nr-logo-tagline::after { width: 10px; }

    .nr-sidebar { width: 85%; max-width: 300px; }

    .quote-box { width: 90%; margin: 18% auto; padding: 24px 18px; }

    .stats-section {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px;
    }
    .stats-section > div { width: 100% !important; margin: 0 !important; }
  }

  @media (max-width: 480px) {
    .nr-topbar-right a { font-size: 11px; }
    .nr-logo-name { font-size: 12px; letter-spacing: 0.08em; }
    .nr-logo-tagline { font-size: 8px; letter-spacing: 0.12em; }
    .nr-logo-tagline::before, .nr-logo-tagline::after { width: 8px; }
    .nr-navbar-inner { height: 56px; }
    .nr-mobile-nav ul li a, .nr-mobile-nav ul li button { font-size: 8px; }
    .quote-box { width: 94%; margin: 24% auto; }
  }

  @media (max-width: 400px) {
    .stats-section { grid-template-columns: 1fr !important; }
    /*.nr-logo-textblock { display: none; }*/
  }

  /* indexpage */

    /* ===== ROOT — matches navbar theme ===== */
    /* :root {
      --nr-navy:   #1a3a6b;
      --nr-navy2:  #122856;
      --nr-gold:   #f0b429;
      --nr-gold2:  #f5cc6a;
      --nr-green:  #3a8c2f;
      --nr-green2: #52b341;
      --nr-white:  #ffffff;
      --nr-light:  #f4f7fb;
      --nr-text:   #1c2b3a;
      --nr-muted:  #5a6a7e;
      --nr-border: #dce6f0;
    } */

    /* ===== HIGHLIGHT TICKER ===== */
    .wkx-highlight-wrap {
      background: linear-gradient(90deg, var(--nr-navy2), #1e4280, var(--nr-navy));
      overflow: hidden;
      padding: 10px 0;
      border-top: 2px solid var(--nr-gold);
      border-bottom: 2px solid var(--nr-gold);
    }
    .wkx-highlight-track {
      display: flex;
      width: max-content;
      animation: nrTick 28s linear infinite;
      margin-top: 15px;
    }
    .wkx-highlight-track:hover { animation-play-state: paused; }
    .wkx-highlight-text {
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,0.90);
      padding: 0 40px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .wkx-highlight-text i { color: var(--nr-gold); font-size: 11px; }
    @keyframes nrTick {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== TRUST CARDS ===== */
    .pt-trust-section {
      background: var(--nr-light);
      padding: 32px 20px;
      border-bottom: 1px solid var(--nr-border);
    }
    .pt-trust-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .pt-trust-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 10px;
      padding: 20px 28px;
      text-align: center;
      flex: 1;
      min-width: 150px;
      max-width: 200px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .pt-trust-card:hover {
      box-shadow: 0 8px 28px rgba(26,58,107,0.12);
      transform: translateY(-3px);
    }
    .pt-trust-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, #fff8e1, #e8f5e9);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
      font-size: 20px;
      color: var(--nr-navy);
      border: 1.5px solid var(--nr-border);
    }
    .pt-trust-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 4px;
    }
    .pt-trust-card p {
      font-size: 14px;
      color: var(--nr-muted);
      margin: 0;
      font-weight: 600;
    }

    /* ===== ABOUT SECTION ===== */
    .aurora-about-v3-wrapper {
      padding: 60px 20px;
      background: var(--nr-white);
    }
    .aurora-about-v3-wrapper:nth-of-type(even) {
    background: #17366945;
    }
    .aurora-about-v3-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 52px;
      flex-wrap: wrap;
    }
    .aurora-about-v3-image-box {
      flex: 1;
      min-width: 280px;
      position: relative;
    }
    .aurora-about-v3-image {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      display: block;
      border: 3px solid var(--nr-border);
    }
    .aurora-about-v3-badge {
      position: absolute;
      background: var(--nr-navy);
      color: var(--nr-white);
      border-radius: 10px;
      padding: 10px 16px;
      text-align: center;
      border: 2px solid var(--nr-gold);
      box-shadow: 0 4px 16px rgba(26,58,107,0.18);
    }
    .aurora-about-v3-badge strong {
      display: block;
      font-size: 20px;
      font-weight: 800;
      color: var(--nr-gold);
    }
    .aurora-about-v3-badge span {
      font-size: 11px;
      opacity: 0.85;
    }
    .aurora-badge-1 { top: -16px; left: -16px; }
    .aurora-badge-2 { bottom: -16px; right: -16px; }
    .aurora-about-v3-content { flex: 1; min-width: 280px; }
    .aurora-about-v3-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 18px;
      line-height: 1.3;
      position: relative;
      padding-bottom: 14px;
    }
    .aurora-about-v3-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-gold), var(--nr-green));
      border-radius: 2px;
    }
    .aurora-about-v3-text {
      font-size: 18px;
      color: var(--nr-muted);
      margin-bottom: 14px;
      line-height: 1.75;
    }
    .aurora-about-v3-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--nr-navy), #1e4280);
      color: var(--nr-gold);
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--nr-navy);
      transition: all 0.2s;
      margin-top: 8px;
    }
    .aurora-about-v3-btn:hover {
      background: var(--nr-gold);
      color: var(--nr-navy2);
      border-color: var(--nr-gold);
    }

    /* ===== PRODUCT SECTION ===== */
    .category-section { padding: 48px 20px; }
    .category-section:nth-child(odd) { background: var(--nr-light); }
    .category-title {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 32px;
      position: relative;
      padding-bottom: 14px;
    }
    .category-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
      border-radius: 2px;
    }
    .product-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .product-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-radius: 12px;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .product-card:hover {
      box-shadow: 0 10px 32px rgba(26,58,107,0.13);
      transform: translateY(-4px);
    }
 .product-image {
  width: 100%;
  height: 302px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--nr-gold);
}

/* Mobile ke liye */
@media (max-width: 768px) {
  .product-image {
    height: auto;
  }
}
    .product-name {
      padding: 12px 14px 8px;
      font-size: 18px;
      font-weight: 700;
      color: var(--nr-navy);
      text-align: center;
    }
    .action-buttons {
      display: flex;
      gap: 8px;
      padding: 0 14px 14px;
    }
    .whatsapp-btn, .call-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 8px 10px;
      border-radius: 7px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }
    .whatsapp-btn {
      background: #25d366;
      color: #fff;
      font-size:14px;
    }
    .whatsapp-btn:hover { background: #1da851; color: #fff; }
    .call-btn {
      background: var(--nr-navy);
      color: var(--nr-gold);
      border: 1.5px solid var(--nr-navy);
      font-size: 14px;
    }
    /*.call-btn:hover {  background: #ff6600;; }*/

    /* ===== WHY CHOOSE US ===== */
    .pt-why-v2-section {
      background: var(--nr-navy2);
      padding: 60px 20px;
    }
    .pt-why-v2-container { max-width: 1100px; margin: 0 auto; }
    .pt-why-v2-heading {
      text-align: center;
      margin-bottom: 40px;
    }
    .pt-why-v2-tag {
      display: inline-block;
      background: var(--nr-gold);
      color: var(--nr-navy2);
      font-size: 11px;
      font-weight: 800;
      padding: 4px 16px;
      border-radius: 20px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .pt-why-v2-heading h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-white);
      line-height: 1.35;
    }
    .pt-why-v2-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .pt-why-v2-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(240,180,41,0.25);
      border-radius: 12px;
      padding: 28px 22px;
      text-align: center;
      transition: background 0.2s, transform 0.2s;
    }
    .pt-why-v2-card:hover {
      background: rgba(240,180,41,0.10);
      transform: translateY(-4px);
    }
    .pt-why-v2-icon { font-size: 32px; margin-bottom: 14px; }
    .pt-why-v2-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--nr-gold);
      margin-bottom: 8px;
    }
    .pt-why-v2-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      margin: 0;
    }

    /* ===== SERVICES SECTION ===== */
    .pt-service-v2-section {
      background: var(--nr-light);
      padding: 60px 20px;
    }
    .pt-service-v2-container { max-width: 1100px; margin: 0 auto; }
    .pt-service-v2-heading {
      text-align: center;
      margin-bottom: 40px;
    }
    .pt-service-v2-heading h2 {
      font-size: 30px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 12px;
    }
    .pt-service-v2-heading p {
      font-size: 17px;
      color: var(--nr-muted);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .pt-service-v2-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }
    .pt-service-v2-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-left: 4px solid var(--nr-gold);
      border-radius: 10px;
      padding: 24px 20px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .pt-service-v2-card:hover {
      box-shadow: 0 8px 28px rgba(26,58,107,0.10);
      transform: translateY(-3px);
    }
    .pt-service-v2-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 8px;
    }
    .pt-service-v2-card p {
      font-size: 15px;
      color: var(--nr-muted);
      line-height: 1.65;
      margin: 0;
    }

    /* ===== GALLERY SLIDER ===== */
    .pt-gallery-slider-section { background: var(--nr-white); }
    .pt-gallery-slider-section h2 { color: var(--nr-navy); font-weight: 800; }
    .pt-gallery-item {
      border-radius: 10px;
      overflow: hidden;
      border: 2px solid var(--nr-border);
    }
    .pt-gallery-item img {
      width: 100%;
      /* height: 200px; */
      object-fit: cover;
      display: block;
      transition: transform 0.35s;
    }
    .pt-gallery-item:hover img { transform: scale(1.04); }

    /* ===== TESTIMONIALS ===== */
    .nebula-testimonial-wrapper {
      background: var(--nr-light);
      padding: 60px 20px;
    }
    .nebula-testimonial-container { max-width: 1100px; margin: 0 auto; }
    .nebula-testimonial-title {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 36px;
      position: relative;
      padding-bottom: 14px;
    }
    .nebula-testimonial-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
      border-radius: 2px;
    }
    .nebula-testimonial-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 12px;
      padding: 24px 20px;
      height: 100%;
      box-sizing: border-box;
    }
    .nebula-stars { font-size: 14px; margin-bottom: 10px; }
    .nebula-testimonial-text {
      font-size: 13.5px;
      color: var(--nr-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .nebula-client-info { display: flex; align-items: center; gap: 12px; }
    .nebula-client-img {
      border-radius: 50%;
      border: 2px solid var(--nr-gold);
      object-fit: cover;
    }
    .nebula-client-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--nr-navy);
      margin: 0;
    }
    .nebula-client-role {
      font-size: 12px;
      color: var(--nr-muted);
    }

    /* ===== BRANDS ===== */
 .company-section {
  padding: 60px 20px;
  background: #d4d4d47;
  
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a3a6b;
  margin-bottom: 40px;
}

.section-title span {
  color: #f0b429;
  border-bottom: 3px solid #f0b429;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.company-card {
  background: #b2b2b22e;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.company-card:hover {
  transform: translateY(-5px);
  border-color: #f0b429;
}

.company-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f0b429;
}

.company-card p {
  color: #666;
  margin-bottom: 5px;
}

.company-card h4 {
  color: #1a3a6b;
  font-weight: 600;
}

    /* ===== FAQ ===== */
    .faq-modern { background: var(--nr-light); }
    .faq-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
    }
    .faq-subtitle { color: var(--nr-muted); font-size: 15px; }
    .faq-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-radius: 10px;
      overflow: hidden;
    }
    .custom-accordion-btn {
      font-weight: 700;
      color: #ffffff;
      font-size: 14px;
      background: var(--nr-white);
      box-shadow: none !important;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background-color: #0a1628;
    }
    .custom-accordion-btn:not(.collapsed) { color: white; 
        background-color: #0a1628;
        
    }
    .faq-icon { color: var(--nr-gold); flex-shrink: 0; margin-top: 2px; }
    .custom-accordion-body {
      font-size: 14px;
     
      line-height: 1.7;
      padding-top: 4px;
     
    }

    /* ===== SECTION PADDING ===== */
    .section-padding { padding: 52px 20px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .aurora-about-v3-container { flex-direction: column; gap: 30px; }
      .aurora-about-v3-title { font-size: 22px; }
      .pt-trust-card { min-width: 130px; }
      .pt-why-v2-heading h2 { font-size: 20px; }
    }
    /* product */

    /* ===== BREADCRUMB ===== */
    .pp-breadcrumb {
      background: linear-gradient(90deg, var(--nr-navy2), #1e4280, var(--nr-navy));
      border-bottom: 2px solid var(--nr-gold);
      padding: 10px 0;
    }
    .pp-breadcrumb-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .pp-breadcrumb-inner a {
      color: rgba(255,255,255,0.80);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }
    .pp-breadcrumb-inner a:hover { color: var(--nr-gold); }
    .pp-breadcrumb-sep { color: var(--nr-gold); font-size: 12px; }
    .pp-breadcrumb-current {
      color: var(--nr-gold);
      font-size: 13px;
      font-weight: 700;
    }

    /* ===== PRODUCT SECTION ===== */
    .pp-product-section {
      padding: 40px 20px;
      background: var(--nr-white);
    }
    .pp-product-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    @media (max-width: 900px) {
      .pp-product-inner { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ---- Gallery Left ---- */
    .pp-gallery-wrap { display: flex; flex-direction: column; gap: 14px; }

    .pp-main-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid var(--nr-border);
      background: var(--nr-light);
    }
    .pp-main-img-wrap img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
      transition: transform 0.35s;
    }
    .pp-main-img-wrap img:hover { transform: scale(1.03); }

    /* Thumbnail slick */
    .pp-thumb-slider { margin-top: 4px; }
    .pp-thumb-item {
      padding: 0 5px;
      cursor: pointer;
    }
    .pp-thumb-item img {
      width: 100%;
      height: 74px;
      object-fit: cover;
      border-radius: 7px;
      border: 2px solid var(--nr-border);
      transition: border-color 0.2s;
    }
    .pp-thumb-item img:hover,
    .pp-thumb-item.slick-current img { border-color: var(--nr-gold); }

    /* Action buttons under image */
    .pp-action-btns {
      display: flex;
      gap: 10px;
      margin-top: 4px;
      flex-wrap: wrap;
    }
    .pp-action-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.22s;
      letter-spacing: 0.04em;
      min-width: 90px;
    }
    .pp-btn-call {
      background: var(--nr-navy);
      color: var(--nr-gold);
      border: 1.5px solid var(--nr-navy);
    }
    .pp-btn-call:hover { background: var(--nr-gold); color: var(--nr-navy2); border-color: var(--nr-gold); }
    .pp-btn-quote {
      background: linear-gradient(135deg, var(--nr-gold), var(--nr-gold2));
      color: var(--nr-navy2);
    }
    .pp-btn-quote:hover { background: var(--nr-navy); color: var(--nr-gold); }
    .pp-btn-whatsapp {
      background: #25d366;
      color: #fff;
    }
    .pp-btn-whatsapp:hover { background: #1da851; }

    /* ---- Product Content Right ---- */
    .pp-product-content { display: flex; flex-direction: column; gap: 16px; }

    .pp-city-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e8f5e9;
      color: var(--nr-green);
      font-size: 12px;
      font-weight: 800;
      padding: 5px 14px;
      border-radius: 20px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      width: fit-content;
      border: 1px solid #c8e6c9;
    }
    .pp-city-tag i { font-size: 13px; }

    .pp-product-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--nr-navy);
      line-height: 1.3;
      margin: 0;
      position: relative;
      padding-bottom: 14px;
    }
    .pp-product-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-gold), var(--nr-green));
      border-radius: 2px;
    }

    .pp-rating-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pp-stars { color: #f0b429; font-size: 18px; letter-spacing: 2px; }
    .pp-rating-text { font-size: 13px; color: var(--nr-muted); font-weight: 600; }
    .pp-rating-text span { color: var(--nr-navy); font-weight: 800; }

    /* Trust badges row */
    .pp-trust-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pp-trust-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--nr-light);
      border: 1px solid var(--nr-border);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--nr-navy);
    }
    .pp-trust-badge i { color: var(--nr-gold); }

    .pp-description {
      font-size: 14.5px;
      color: var(--nr-muted);
      line-height: 1.8;
      border-left: 3px solid var(--nr-gold);
      padding-left: 14px;
      background: var(--nr-light);
      border-radius: 0 8px 8px 0;
      padding: 14px 16px;
    }
    .pp-description h2{
        font-size: 20px;
    }
    /* ===== FULL DESCRIPTION ===== */
    .pp-full-description-section {
      background: var(--nr-light);
      padding: 48px 20px;
      border-top: 1px solid var(--nr-border);
    }
    .pp-full-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .pp-full-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 44px; height: 3px;
      background: var(--nr-gold);
      border-radius: 2px;
    }
    .pp-full-content {
      font-size: 15px;
      color: var(--nr-muted);
      line-height: 1.85;
    }

    /* ===== RELATED PRODUCTS ===== */
    .pp-related {
      padding: 52px 20px;
      background: var(--nr-white);
      border-top: 1px solid var(--nr-border);
    }
    .pp-related-inner { max-width: 1200px; margin: 0 auto; }

    .pp-section-head {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      margin-bottom: 36px;
    }
    .pp-section-head-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--nr-border));
      max-width: 200px;
    }
    .pp-section-head-line:last-child {
      background: linear-gradient(90deg, var(--nr-border), transparent);
    }
    .pp-section-head-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--nr-navy);
      white-space: nowrap;
      margin: 0;
    }
    .pp-section-head-title span { color: var(--nr-gold); }

    .pp-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .pp-product-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-radius: 12px;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .pp-product-card:hover {
      box-shadow: 0 10px 32px rgba(26,58,107,0.12);
      transform: translateY(-4px);
    }
    .pp-card-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .pp-card-img-wrap img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      transition: transform 0.35s;
      border-bottom: 2px solid var(--nr-gold);
    }
    .pp-product-card:hover .pp-card-img-wrap img { transform: scale(1.05); }

    .pp-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,58,107,0.70);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .pp-product-card:hover .pp-card-overlay { opacity: 1; }

    .pp-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }
    .quote-ov {
      background: var(--nr-gold);
      color: var(--nr-navy2);
    }
    .quote-ov:hover { background: var(--nr-gold2); }
    .wa-ov {
      background: #25d366;
      color: #fff;
    }
    .wa-ov:hover { background: #1da851; }

    .pp-card-body { padding: 12px 14px 14px; }
    .pp-card-title {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--nr-navy);
      text-decoration: none;
      margin-bottom: 10px;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .pp-card-title:hover { color: var(--nr-gold); }

    .pp-card-btns {
      display: flex;
      gap: 8px;
    }
    .pp-card-btn-quote {
      flex: 1;
      background: linear-gradient(135deg, var(--nr-navy), #1e4280);
      color: var(--nr-gold);
      justify-content: center;
    }
    .pp-card-btn-quote:hover { background: var(--nr-gold); color: var(--nr-navy2); }
    .pp-card-btn-wa {
      flex: 1;
      background: #25d366;
      color: #fff;
      justify-content: center;
    }
    .pp-card-btn-wa:hover { background: #1da851; }

    /* ===== TESTIMONIALS ===== */
    .nebula-testimonial-wrapper {
      background: var(--nr-light);
      padding: 60px 20px;
      border-top: 1px solid var(--nr-border);
    }
    .nebula-testimonial-title {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 36px;
      position: relative;
      padding-bottom: 14px;
    }
    .nebula-testimonial-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
      border-radius: 2px;
    }
    .nebula-testimonial-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 12px;
      padding: 24px 20px;
      height: 100%;
      box-sizing: border-box;
    }
    .nebula-stars { font-size: 14px; margin-bottom: 10px; }
    .nebula-testimonial-text {
      font-size: 13.5px;
      color: var(--nr-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .nebula-client-info { display: flex; align-items: center; gap: 12px; }
    .nebula-client-img {
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 2px solid var(--nr-gold);
      object-fit: cover;
    }
    .nebula-client-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--nr-navy);
      margin: 0;
    }
    .nebula-client-role { font-size: 12px; color: var(--nr-muted); }

    /* get-quote-btn inside button reset */
    .get-quote-btn {
      text-decoration: none !important;
      color: inherit !important;
      display: flex;
      align-items: center;
      gap: 5px;
    }
/* aboutttt  */

    /* ===== ROOT — matches navbar theme ===== */
    :root {
      --nr-navy:   #1a3a6b;
      --nr-navy2:  #122856;
      --nr-gold:   #f0b429;
      --nr-gold2:  #f5cc6a;
      --nr-green:  #3a8c2f;
      --nr-green2: #52b341;
      --nr-white:  #ffffff;
      --nr-light:  #f4f7fb;
      --nr-text:   #1c2b3a;
      --nr-muted:  #5a6a7e;
      --nr-border: #dce6f0;
    }

    /* ===== BREADCRUMB ===== */
    .breadcrumb {
      background: linear-gradient(90deg, var(--nr-navy2), #1e4280, var(--nr-navy));
      border-bottom: 2px solid var(--nr-gold);
    }
    .breadcrumb span,
    .breadcrumb a {
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.04em;
    }
    .breadcrumb a:hover { color: var(--nr-gold); }
    .breadcrumb i { color: var(--nr-gold); font-size: 14px; vertical-align: middle; }

    /* ===== ABOUT SECTION ===== */
    .about-section { padding: 47px 0 40px; }

    .about-img {
      width: 100%;
      border-radius: 14px;
      border: 3px solid var(--nr-border);
      object-fit: cover;
      box-shadow: 0 12px 40px rgba(26,58,107,0.13);
    }

    .about-content { padding-left: 40px; }
    @media (max-width: 991px) { .about-content { padding-left: 0; margin-top: 28px; } }

    .section-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
      position: relative;
      padding-bottom: 14px;
      margin-bottom: 20px;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-gold), var(--nr-green));
      border-radius: 2px;
    }
    .about-content p {
      font-size: 15px;
      color: var(--nr-muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    /* Stats row inside about */
    .about-stats {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .about-stat-box {
      background: var(--nr-light);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 10px;
      padding: 16px 24px;
      text-align: center;
      flex: 1;
      min-width: 110px;
    }
    .about-stat-box strong {
      display: block;
      font-size: 22px;
      font-weight: 800;
      color: var(--nr-navy);
    }
    .about-stat-box strong span { color: var(--nr-gold); }
    .about-stat-box small {
      font-size: 11px;
      color: var(--nr-muted);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ===== WHY CHOOSE ===== */
    .why-choose-section {
      padding: 60px 0;
      background: var(--nr-light);
      border-top: 1px solid var(--nr-border);
    }
    .section-subtitle {
      color: var(--nr-muted);
      font-size: 15px;
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .why-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-radius: 12px;
      padding: 30px 24px;
      height: 100%;
      text-align: center;
      transition: box-shadow 0.25s, transform 0.25s;
      border-top: 3px solid var(--nr-gold);
    }
    .why-card:hover {
      box-shadow: 0 10px 32px rgba(26,58,107,0.12);
      transform: translateY(-4px);
    }
    .icon-box {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--nr-navy2), #1e4280);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 22px;
      color: var(--nr-gold);
      border: 2px solid rgba(240,180,41,0.3);
    }
    .why-card h4 {
      font-size: 16px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: 14px;
      color: var(--nr-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ===== MISSION VISION ===== */
    .mv-section {
      padding: 60px 0;
      background: var(--nr-navy2);
    }
    .mv-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(240,180,41,0.25);
      border-radius: 12px;
      padding: 32px 26px;
      height: 100%;
      transition: background 0.2s;
    }
    .mv-card:hover { background: rgba(240,180,41,0.08); }
    .mv-icon {
      font-size: 30px;
      margin-bottom: 14px;
    }
    .mv-card h4 {
      font-size: 17px;
      font-weight: 800;
      color: var(--nr-gold);
      margin-bottom: 12px;
    }
    .mv-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      line-height: 1.75;
      margin: 0;
    }
    .mv-heading {
      text-align: center;
      margin-bottom: 40px;
    }
    .mv-heading h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-white);
    }
    .mv-heading p {
      color: rgba(255,255,255,0.65);
      font-size: 14px;
      margin-top: 8px;
    }

    /* ===== TESTIMONIALS ===== */
    .nebula-testimonial-wrapper {
      background: var(--nr-light);
      padding: 60px 0;
      border-top: 1px solid var(--nr-border);
    }
    .nebula-testimonial-title {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 36px;
      position: relative;
      padding-bottom: 14px;
    }
    .nebula-testimonial-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
      border-radius: 2px;
    }
    .nebula-testimonial-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 12px;
      padding: 24px 20px;
      height: 100%;
      box-sizing: border-box;
    }
    .nebula-stars { font-size: 14px; margin-bottom: 10px; }
    .nebula-testimonial-text {
      font-size: 13.5px;
      color: var(--nr-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .nebula-client-info { display: flex; align-items: center; gap: 12px; }
    .nebula-client-img {
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 2px solid var(--nr-gold);
      object-fit: cover;
    }
    .nebula-client-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--nr-navy);
      margin: 0;
    }
    .nebula-client-role {
      font-size: 12px;
      color: var(--nr-muted);
    }
/* pr-pg */

    /* ===== ROOT — matches updated navbar theme ===== */
    :root {
      --nr-navy:   #0d2347;
      --nr-navy2:  #071830;
      --nr-gold:   #e8a800;
      --nr-gold2:  #f5c842;
      --nr-green:  #1e7e34;
      --nr-green2: #28a745;
      --nr-white:  #ffffff;
      --nr-light:  #f0f4fa;
      --nr-text:   #1c2b3a;
      --nr-muted:  #5a6a7e;
      --nr-border: #d0dcea;
    }

    /* ===== SCROLL REVEAL BASE ===== */
    .nr-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .nr-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .nr-reveal-left {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .nr-reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .nr-reveal-right {
      opacity: 0;
      transform: translateX(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .nr-reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ===== BREADCRUMB ===== */
    .pp-breadcrumb {
      background: linear-gradient(90deg, var(--nr-navy2), #0f2d5a, var(--nr-navy));
      border-bottom: 2px solid var(--nr-gold);
      padding: 10px 0;
    }
    .pp-breadcrumb-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .pp-breadcrumb-inner a {
      color: rgba(255,255,255,0.80);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }
    .pp-breadcrumb-inner a:hover { color: var(--nr-gold); }
    .pp-breadcrumb-sep { color: var(--nr-gold); font-size: 12px; }
    .pp-breadcrumb-current {
      color: var(--nr-gold);
      font-size: 13px;
      font-weight: 700;
    }

    /* ===== PRODUCT SECTION ===== */
    .pp-product-section {
      padding: 48px 20px;
      background: var(--nr-white);
    }
    .pp-product-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: start;
    }
    @media (max-width: 900px) {
      .pp-product-inner { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ---- Gallery Left ---- */
    .pp-gallery-wrap { display: flex; flex-direction: column; gap: 14px; }

    .pp-main-img-wrap {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      border: 2px solid var(--nr-border);
      background: var(--nr-light);
      box-shadow: 0 8px 32px rgba(13,35,71,0.10);
    }
    .pp-main-img-wrap img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
      transition: transform 0.4s ease;
    }
    .pp-main-img-wrap img:hover { transform: scale(1.04); }

    /* image badge */
    .pp-img-badge {
      position: absolute;
      top: 14px; left: 14px;
      background: linear-gradient(135deg, var(--nr-gold), var(--nr-gold2));
      color: var(--nr-navy2);
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 2;
      box-shadow: 0 2px 10px rgba(232,168,0,0.40);
      animation: nrPulseGold 2.5s ease-in-out infinite;
    }
    @keyframes nrPulseGold {
      0%, 100% { box-shadow: 0 2px 10px rgba(232,168,0,0.35); }
      50%       { box-shadow: 0 4px 22px rgba(232,168,0,0.68); }
    }

    /* Thumbnail slick */
    .pp-thumb-slider { margin-top: 4px; }
    .pp-thumb-item { padding: 0 5px; cursor: pointer; }
    .pp-thumb-item img {
      width: 100%;
      height: 74px;
      object-fit: cover;
      border-radius: 8px;
      border: 2px solid var(--nr-border);
      transition: border-color 0.2s, transform 0.2s;
    }
    .pp-thumb-item img:hover { border-color: var(--nr-gold); transform: scale(1.04); }
    .pp-thumb-item.slick-current img { border-color: var(--nr-gold); }

    /* Trust badges */
    .pp-trust-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pp-trust-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--nr-light);
      border: 1px solid var(--nr-border);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--nr-navy);
      transition: all 0.2s;
    }
    .pp-trust-badge:hover {
      background: var(--nr-navy);
      color: var(--nr-gold);
      border-color: var(--nr-navy);
      transform: translateY(-2px);
    }
    .pp-trust-badge i { color: var(--nr-gold); font-size: 13px; }
    .pp-trust-badge:hover i { color: var(--nr-gold2); }

    /* Action Buttons */
    .pp-action-btns {
      display: flex;
      gap: 10px;
      margin-top: 4px;
      flex-wrap: wrap;
    }
    .pp-action-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      letter-spacing: 0.04em;
      min-width: 90px;
    }
    .pp-btn-call {
      background: var(--nr-navy);
      color: var(--nr-gold);
      border: 1.5px solid var(--nr-navy);
    }
    .pp-btn-call:hover {
      background: var(--nr-gold);
      color: var(--nr-navy2);
      border-color: var(--nr-gold);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,168,0,0.30);
    }
    .pp-btn-quote {
      background: linear-gradient(135deg, var(--nr-gold), var(--nr-gold2));
      color: var(--nr-navy2);
    }
    .pp-btn-quote:hover {
      background: var(--nr-navy);
      color: var(--nr-gold);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13,35,71,0.18);
    }
    .pp-btn-whatsapp {
      background: #25d366;
      color: #fff;
    }
    .pp-btn-whatsapp:hover {
      background: #1da851;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37,211,102,0.30);
    }

    /* ---- Product Content Right ---- */
    .pp-product-content { display: flex; flex-direction: column; gap: 18px; }

    .pp-city-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e8f5e9;
      color: var(--nr-green);
      font-size: 12px;
      font-weight: 800;
      padding: 5px 14px;
      border-radius: 20px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      width: fit-content;
      border: 1px solid #c8e6c9;
      animation: nrCityPop 0.5s 0.3s ease both;
    }
    @keyframes nrCityPop {
      from { opacity: 0; transform: scale(0.8); }
      to   { opacity: 1; transform: scale(1); }
    }
    .pp-city-tag i { font-size: 13px; }

    .pp-product-title {
      font-size: 30px;
      font-weight: 800;
      color: var(--nr-navy);
      line-height: 1.3;
      margin: 0;
      position: relative;
      padding-bottom: 14px;
    }
    .pp-product-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--nr-gold), var(--nr-green2));
      border-radius: 2px;
      animation: nrTitleLine 0.8s 0.4s ease forwards;
    }
    @keyframes nrTitleLine {
      from { width: 0; }
      to   { width: 56px; }
    }

    .pp-rating-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pp-stars { color: var(--nr-gold); font-size: 18px; letter-spacing: 2px; }
    .pp-rating-text { font-size: 13px; color: var(--nr-muted); font-weight: 600; }
    .pp-rating-text span { color: var(--nr-navy); font-weight: 800; }

    .pp-description {
      font-size: 14.5px;
      color: var(--nr-muted);
      line-height: 1.85;
      border-left: 3px solid var(--nr-gold);
      background: var(--nr-light);
      border-radius: 0 10px 10px 0;
      padding: 14px 16px;
    }

    /* Quick Info Grid */
    .pp-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 6px;
    }
    .pp-info-card {
      background: var(--nr-light);
      border: 1px solid var(--nr-border);
      border-radius: 10px;
      padding: 13px 15px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .pp-info-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      border-radius: 0;
    }
    .pp-info-card.gold::before { background: var(--nr-gold); }
    .pp-info-card.green::before { background: var(--nr-green2); }
    .pp-info-card:hover {
      box-shadow: 0 6px 22px rgba(13,35,71,0.10);
      transform: translateY(-2px);
    }
    .pp-info-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--nr-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }
    .pp-info-value {
      font-size: 14px;
      font-weight: 800;
      color: var(--nr-navy);
    }

    /* ===== FULL DESCRIPTION ===== */
    .pp-full-description-section {
      background: var(--nr-light);
      padding: 52px 20px;
      border-top: 1px solid var(--nr-border);
    }
    .pp-full-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .pp-full-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 44px; height: 3px;
      background: linear-gradient(90deg, var(--nr-gold), var(--nr-green2));
      border-radius: 2px;
    }
    .pp-full-content {
      font-size: 15px;
      color: var(--nr-muted);
      line-height: 1.9;
    }

    /* ===== RELATED PRODUCTS ===== */
    .pp-related {
      padding: 56px 20px;
      background: var(--nr-white);
      border-top: 1px solid var(--nr-border);
    }
    .pp-related-inner { max-width: 1200px; margin: 0 auto; }

    .pp-section-head {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      margin-bottom: 38px;
    }
    .pp-section-head-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--nr-border));
      max-width: 200px;
    }
    .pp-section-head-line:last-child {
      background: linear-gradient(90deg, var(--nr-border), transparent);
    }
    .pp-section-head-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--nr-navy);
      white-space: nowrap;
      margin: 0;
    }
    .pp-section-head-title span { color: var(--nr-gold); }

    .pp-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 22px;
    }

    .pp-product-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-radius: 14px;
      overflow: hidden;
      transition: box-shadow 0.28s, transform 0.28s;
    }
    .pp-product-card:hover {
      box-shadow: 0 14px 40px rgba(13,35,71,0.14);
      transform: translateY(-5px);
    }
    .pp-card-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .pp-card-img-wrap img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.38s;
      border-bottom: 2px solid var(--nr-gold);
    }
    .pp-product-card:hover .pp-card-img-wrap img { transform: scale(1.07); }

    .pp-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(13,35,71,0.72);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: opacity 0.28s;
    }
    .pp-product-card:hover .pp-card-overlay { opacity: 1; }

    .pp-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }
    .quote-ov { background: var(--nr-gold); color: var(--nr-navy2); }
    .quote-ov:hover { background: var(--nr-gold2); }
    .wa-ov { background: #25d366; color: #fff; }
    .wa-ov:hover { background: #1da851; }

    .pp-card-body { padding: 13px 15px 15px; }
    .pp-card-title {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--nr-navy);
      text-decoration: none;
      margin-bottom: 11px;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .pp-card-title:hover { color: var(--nr-gold); }

    .pp-card-btns { display: flex; gap: 8px; }
    .pp-card-btn-quote {
      flex: 1;
      background: linear-gradient(135deg, var(--nr-navy), #0f2d5a);
      color: var(--nr-gold);
      justify-content: center;
    }
    .pp-card-btn-quote:hover { background: var(--nr-gold); color: var(--nr-navy2); }
    .pp-card-btn-wa {
      flex: 1;
      background: #25d366;
      color: #fff;
      justify-content: center;
    }
    .pp-card-btn-wa:hover { background: #1da851; }

    /* ===== TESTIMONIALS ===== */
    .nebula-testimonial-wrapper {
      background: var(--nr-light);
      padding: 64px 20px;
      border-top: 1px solid var(--nr-border);
    }
    .nebula-testimonial-title {
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      color: var(--nr-navy);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 16px;
    }
    .nebula-testimonial-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--nr-navy), var(--nr-gold));
      border-radius: 2px;
    }
    .nebula-testimonial-card {
      background: var(--nr-white);
      border: 1px solid var(--nr-border);
      border-top: 3px solid var(--nr-gold);
      border-radius: 14px;
      padding: 26px 22px;
      height: 100%;
      box-sizing: border-box;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .nebula-testimonial-card:hover {
      box-shadow: 0 10px 32px rgba(13,35,71,0.10);
      transform: translateY(-3px);
    }
    .nebula-stars { font-size: 14px; margin-bottom: 12px; }
    .nebula-testimonial-text {
      font-size: 13.5px;
      color: var(--nr-muted);
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .nebula-client-info { display: flex; align-items: center; gap: 12px; }
    .nebula-client-img {
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 2px solid var(--nr-gold);
      object-fit: cover;
    }
    .nebula-client-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--nr-navy);
      margin: 0;
    }
    .nebula-client-role { font-size: 12px; color: var(--nr-muted); }

    .get-quote-btn {
      text-decoration: none !important;
      color: inherit !important;
      display: flex;
      align-items: center;
      gap: 5px;
    }
/* GRID FIX - 4 ITEMS PER ROW */
.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 FIXED 4 */
  gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pp-related-grid {
    grid-template-columns: 1fr;
  }
}
/* galary */
/* SECTION */
.corporate-gallery {
  background: #f9fafc;
}

/* TITLE */
.gallery-title {
  font-size: 32px;
  color: #1a3a6b;
}

.gallery-subtitle {
  font-size: 15px;
}

/* GALLERY BLOCK */
.gallery-block {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* IMAGE */
.gallery-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 12px;
}

/* HOVER EFFECT */
.gallery-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, 0.6); /* dark blue overlay */
  opacity: 0;
  transition: 0.4s;
  border-radius: 12px;
}

/* ICON */
.gallery-block::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  color: #fff;
  transition: 0.4s;
}

/* HOVER ACTIVE */
.gallery-block:hover img {
  transform: scale(1.1);
}

.gallery-block:hover::before {
  opacity: 1;
}

.gallery-block:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-block img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-block img {
    height: 180px;
  }
}
/* GRID SYSTEM */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 FIXED 4 */
  gap: 20px;
}

/* ITEM */
.gallery-item {
  width: 100%;
}

/* IMAGE BLOCK */
.gallery-block {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER */
.gallery-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, 0.6);
  opacity: 0;
  transition: 0.4s;
}

.gallery-block::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  font-size: 28px;
  transition: 0.4s;
}

.gallery-block:hover img {
  transform: scale(1.1);
}

.gallery-block:hover::before {
  opacity: 1;
}

.gallery-block:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* sitemap */
/* =========================
   SECTION
========================= */
.section-padding {
  padding: 60px 0;
}

/* =========================
   NAVIGATION TITLE
========================= */
.sitemap-navhead {
  font-size: 28px;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 15px;
}

/* =========================
   NAV LINKS
========================= */
.sitemap-navlink {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* NAV ITEM */
.sitemap-navlink li {
  display: inline-block;
}

/* NAV LINK */
.sitemap-navlink li a {
  text-decoration: none;
  color: #fff;
  background: #1a3a6b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
  display: block;
}

/* HOVER */
.sitemap-navlink li a:hover {
  background: #f0b429;
  color: #000;
}

/* =========================
   PRODUCT TITLE
========================= */
.sitemap-cathead {
  font-size: 26px;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 20px;
  border-left: 5px solid #f0b429;
  padding-left: 10px;
}

/* =========================
   PRODUCT GRID
========================= */
.sitemap-catlink {
  list-style: none;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
}

/* ITEM */
.sitemap-catlink li {
  list-style: none;
}

/* LINK */
.sitemap-catlink li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

/* ARROW ICON */
.sitemap-catlink li a::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #f0b429;
  font-size: 12px;
}

/* HOVER */
.sitemap-catlink li a:hover {
  color: #1a3a6b;
  transform: translateX(5px);
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {
  .sitemap-catlink {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {

  /* NAV → 2 PER ROW */
  .sitemap-navlink li {
    width: calc(50% - 5px);
  }

  .sitemap-navlink li a {
    text-align: center;
    width: 100%;
  }

  /* PRODUCTS → 1 COLUMN */
  .sitemap-catlink {
    grid-template-columns: 1fr;
  }
}
/* Section */
.about-section {
  padding: 80px 0;
  background: #f9fbff;
}

/* Image */
.about-img img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Headings */
.about-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 10px;
}

/* Paragraph */
.about-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Spacing between sections */
.about-section h2:not(:first-child) {
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 0;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-section p {
    font-size: 14px;
  }

  .about-img {
    margin-bottom: 30px;
  }
}
/* Section */
.nr-about-clean {
  padding: 70px 0;
  background: #f4f7fb;
}

/* Wrapper (IMPORTANT FIX) */
.nr-about-wrap {
  max-width: 1100px;   /* ❗ ye sabse important fix hai */
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Content */
.nr-about-left {
  flex: 1;
  max-width: 650px;  /* ❗ text ko limit kar diya */
}

.nr-about-left h2 {
  font-size: 24px;
  color: #1f3c88;
  margin-bottom: 8px;
}

.nr-about-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Right Image */
.nr-about-right {
  width: 260px;
}

.nr-about-right img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .nr-about-wrap {
    flex-direction: column;
  }

  .nr-about-right {
    width: 100%;
  }
}
.about-modern {
  padding: 80px 0;
  background: #f9fbff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image-box {
  position: relative;
}

.about-image-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* BADGES */
.badge {
  position: absolute;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.badge strong {
  display: block;
  font-size: 20px;
  color: #0b3d91;
}

.badge span {
  font-size: 13px;
  color: #555;
}

.badge-exp {
  top: 20px;
  left: -20px;
}

.badge-project {
  bottom: 20px;
  right: -20px;
}

/* CONTENT */
.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b3d91;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #0b3d91;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #082c6c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .badge-exp {
    left: 10px;
  }

  .badge-project {
    right: 10px;
  }

  .hide-mobile {
    display: none;
  }
}
.nebula-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-review-img {
  height: 18px;
  width: auto;
}
.google-review-img {
  height: 20px;
  width: auto;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.9;
  transition: 0.3s;
}

.google-review-img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.testimonial-section {
  padding: 50px 0;
  background: #f5f5f5;
}

.slider-container {
  /*width: 400px;*/
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.testimonial {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.review-text {
  font-size: 17px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-weight: bold;
  font-size: 15px;
}

.google-img {
  width: 113px;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* CARD FIX */
.nebula-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /*min-height: 260px;*/
  padding: 20px;
}

/* TEXT */
.nebula-testimonial-text {
  flex-grow: 1;
  margin-bottom: 15px;
  min-height: 70px;
}

/* CLIENT INFO */
.nebula-client-info {
  display: flex;
  align-items: center; /* FIXED */
  gap: 12px;
}

/* IMAGE */
.nebula-client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* NAME + GOOGLE ROW */
.nebula-name-row {
  display: flex;
  align-items: center; /* IMPORTANT FIX */
  justify-content: space-between;
  gap: 10px;
}

/* GOOGLE IMAGE FIX (IMPORTANT) */
.google-img {
  height: auto;   /* 🔥 75px bahut bada lag raha tha */
  margin: 0;      /* remove extra spacing */
  display: block;
}

/* DETAILS */
.client-details {
  width: 100%;
}

/* NAME */
.nebula-client-name {
  font-size: 16px;
  margin: 0;
}

/* ROLE */
.nebula-client-role {
  font-size: 13px;
  color: #777;
}
/* Base fix */
.call-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
}

/* Icon */
.call-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Text fix */
.call-text {
  white-space: nowrap;   /* 🔥 line break rokega */
 font-size: 18px;
    color: #243341 !important;
    font-weight: 800;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .call-link {
    justify-content: flex-end; /* right align jaise screenshot */
    gap: 6px;
  }

  .call-text {
    font-size: 14px;
  }

  .call-icon {
    font-size: 14px;
  }

}
/* Mobile Responsive Fix */
@media (max-width: 767px) {

  .wkx-highlight-wrap {
    padding: 6px 0;
    overflow: hidden;
  }

  .wkx-highlight-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
  }

  .wkx-highlight-text {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    white-space: nowrap;
  }

  .wkx-highlight-text i {
    font-size: 12px;
    margin-right: 5px;
  }

}
/* Mobile me section hide */
@media (max-width: 767px) {
  .about-section {
    display: none;
  }
}
.nr-hamburger {
  background: none;
  border: none;
  font-size: 22px;
  color: white !important;
  cursor: pointer;
}
@media (max-width: 767px) {

  .nr-footer-flex {
    display: flex;
    gap: 10px;
  }

  .nr-footer-flex > div {
    width: 50%;
  }

  .nr-footer-title {
    font-size: 14px;
  }

  .nr-footer-links li {
    font-size: 12px;
  }

}