/* =============================================================================
   NAUGRA HOMEPAGE + ABOUT PAGE COMBINED STYLESHEET
   Save as: /css/naugra-home.css
   
   STRUCTURE:
   Part 1 — homepage styles (.nh-*)  ← base, untouched
   Part 2 — about-page styles (.ab-*) ← appended, :root removed (already in base)
   ============================================================================= */


/* ============================================================================
   PART 1 — HOMEPAGE (.nh-*) — BASE FILE, UNCHANGED
   ============================================================================ */

:root{
  --nh-primary:#0b4a8f;
  --nh-primary-dark:#073a70;
  --nh-accent:#f39c12;
  --nh-accent-dark:#d4840a;
  --nh-body:#2b3445;
  --nh-muted:#6b7280;
  --nh-soft:#f6f8fb;
  --nh-border:#e5e9f0;
  --nh-radius:14px;
  --nh-shadow-sm:0 2px 8px rgba(11,74,143,.06);
  --nh-shadow-md:0 8px 24px rgba(11,74,143,.10);
  --nh-shadow-lg:0 16px 40px rgba(11,74,143,.14);
}

/* Only apply fonts inside .nh-section so header/footer fonts stay untouched */
.nh-section,
.nh-section p, .nh-section a, .nh-section span, .nh-section li,
.nh-section button, .nh-section div{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--nh-body);
  line-height:1.65;
}
.nh-section h1,.nh-section h2,.nh-section h3,
.nh-section h4,.nh-section h5,.nh-section h6{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:#102a43;
  letter-spacing:-.02em;
}
.nh-section-title{font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:.5rem}
.nh-eyebrow{
  display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--nh-accent);margin-bottom:.75rem;
}
.nh-lead{color:var(--nh-muted);max-width:760px;margin:0 auto 2.5rem}

/* ---------- HERO SLIDER ---------- */
.nh-hero{position:relative;overflow:hidden}
.nh-hero-slide{position:relative;height:clamp(420px,65vh,640px);overflow:hidden}
.nh-hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1}
.nh-hero-slide::after{
  content:"";position:absolute;inset:0;z-index:2;
  background:linear-gradient(90deg,rgba(7,28,60,.78) 0%,rgba(7,28,60,.45) 55%,rgba(7,28,60,.15) 100%);
}
.nh-hero-content{position:relative;z-index:3;height:100%;display:flex;align-items:center;color:#fff}
.nh-hero-eyebrow{
  display:inline-block;padding:.35rem .9rem;border-radius:100px;
  background:rgba(243,156,18,.2);color:#ffd588;
  font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:1.25rem;border:1px solid rgba(243,156,18,.35);
}
.nh-hero-content h1,.nh-hero-content h2{
  color:#fff;font-size:clamp(1.8rem,4.5vw,3.4rem);
  font-weight:800;line-height:1.1;margin-bottom:1rem;
}
.nh-hero-content p{font-size:clamp(1rem,1.4vw,1.15rem);max-width:620px;opacity:.95;margin-bottom:1.75rem}
.nh-hero-btns .btn{padding:.75rem 1.6rem;font-weight:600;border-radius:8px}
.nh-btn-brand{background:var(--nh-accent)!important;color:#fff!important;border:none!important}
.nh-btn-brand:hover{background:var(--nh-accent-dark)!important;color:#fff!important}
.nh-btn-outline-light{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.6)}
.nh-btn-outline-light:hover{background:#fff;color:var(--nh-primary)}
.nh-hero .swiper-pagination-bullet{background:#fff;opacity:.5}
.nh-hero .swiper-pagination-bullet-active{background:var(--nh-accent);opacity:1;width:28px;border-radius:5px}
.nh-hero .swiper-button-next,.nh-hero .swiper-button-prev{
  color:#fff;width:48px;height:48px;background:rgba(0,0,0,.25);
  border-radius:50%;backdrop-filter:blur(6px);
}
.nh-hero .swiper-button-next:after,.nh-hero .swiper-button-prev:after{font-size:18px;font-weight:700}

/* ---------- TRUST STRIP ---------- */
.nh-trust{background:var(--nh-primary);color:#fff;padding:1.25rem 0}
.nh-trust-item{display:flex;align-items:center;gap:.75rem;justify-content:center;font-weight:500}
.nh-trust-item i{font-size:1.5rem;color:var(--nh-accent)}
.nh-trust-item span{font-size:.95rem;color:#fff}

/* ---------- CATEGORY GRID ---------- */
.nh-categories{padding:5rem 0;background:var(--nh-soft)}
.nh-cat-card{
  display:block;position:relative;height:260px;
  border-radius:var(--nh-radius);overflow:hidden;
  box-shadow:var(--nh-shadow-sm);background:#fff;
  transition:transform .35s ease,box-shadow .35s ease;
  text-decoration:none!important;color:inherit;
}
.nh-cat-card:hover{transform:translateY(-6px);box-shadow:var(--nh-shadow-lg)}
.nh-cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease;display:block}
.nh-cat-card:hover img{transform:scale(1.08)}
.nh-cat-overlay{
  position:absolute;inset:0;display:flex;align-items:flex-end;padding:1.25rem;
  background:linear-gradient(180deg,transparent 40%,rgba(7,28,60,.85) 100%);
}
.nh-cat-title{color:#fff!important;font-weight:600;font-size:1.05rem;margin:0;font-family:'Poppins',sans-serif}
.nh-cat-arrow{
  position:absolute;top:1rem;right:1rem;width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.15);backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;color:#fff;
  opacity:0;transform:translateX(-8px);transition:all .3s ease;
}
.nh-cat-card:hover .nh-cat-arrow{opacity:1;transform:translateX(0)}

/* ---------- ABOUT ---------- */
.nh-about{padding:5rem 0;background:#fff}
.nh-about-img{
  background:url('/images/about.jpg') center/cover no-repeat,
             linear-gradient(135deg,#0b4a8f,#073a70);
  border-radius:var(--nh-radius);min-height:440px;
}
.nh-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem}
.nh-stat{background:#fff;border:1px solid var(--nh-border);border-radius:var(--nh-radius);padding:1.25rem;text-align:center}
.nh-stat .num{font-family:'Poppins';font-size:2rem;font-weight:800;color:var(--nh-primary);line-height:1;display:block}
.nh-stat .label{font-size:.85rem;color:var(--nh-muted);margin-top:.35rem;display:block}

/* ---------- SERVICES ---------- */
.nh-services{padding:5rem 0;background:var(--nh-soft)}
.nh-service-card{
  background:#fff;border:1px solid var(--nh-border);border-radius:var(--nh-radius);
  padding:2rem 1.5rem;height:100%;transition:all .3s ease;
}
.nh-service-card:hover{transform:translateY(-4px);box-shadow:var(--nh-shadow-md);border-color:var(--nh-primary)}
.nh-service-icon{
  width:60px;height:60px;border-radius:14px;
  background:linear-gradient(135deg,var(--nh-primary),var(--nh-primary-dark));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;margin-bottom:1.25rem;
}
.nh-service-card h3{font-size:1.15rem;margin-bottom:.5rem}
.nh-service-card p{color:var(--nh-muted);font-size:.95rem;margin:0 0 .75rem}
.nh-text-brand{color:var(--nh-primary)!important}

/* ---------- INDUSTRIES ---------- */
.nh-industries{padding:5rem 0;background:#fff}
.nh-industry-pill{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.6rem 1.1rem;border-radius:100px;
  background:#fff;border:1px solid var(--nh-border);
  font-size:.9rem;font-weight:500;color:var(--nh-body);
  transition:all .25s ease;margin:.35rem;text-decoration:none!important;
}
.nh-industry-pill:hover{background:var(--nh-primary);color:#fff;border-color:var(--nh-primary)}
.nh-industry-pill i{color:var(--nh-accent)}
.nh-industry-pill:hover i{color:#fff}

/* ---------- GLOBAL REACH ---------- */
.nh-global{padding:5rem 0;color:#fff;position:relative;overflow:hidden;background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%)}
.nh-global::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle at 20% 30%,rgba(243,156,18,.15) 0,transparent 40%),
                   radial-gradient(circle at 80% 70%,rgba(243,156,18,.1) 0,transparent 40%);
}
.nh-global .nh-section-title{color:#fff}
.nh-global .nh-lead{color:rgba(255,255,255,.8)}
.nh-region-card{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--nh-radius);padding:1.75rem;
  backdrop-filter:blur(8px);position:relative;z-index:1;height:100%;
}
.nh-region-card h3{color:#fff;font-size:1.1rem;display:flex;align-items:center;gap:.6rem}
.nh-region-card h3 i{color:var(--nh-accent)}
.nh-region-card p{color:rgba(255,255,255,.85);font-size:.9rem;margin:0;line-height:1.7}

/* ---------- TESTIMONIALS ---------- */
.nh-testimonials{padding:5rem 0;background:var(--nh-soft)}
.nh-testi-card{
  background:#fff;border:1px solid var(--nh-border);border-radius:var(--nh-radius);
  padding:2rem;position:relative;box-shadow:var(--nh-shadow-sm);height:100%;
}
.nh-testi-card::before{
  content:"\201C";position:absolute;top:0;right:1.5rem;
  font-family:Georgia,serif;font-size:5rem;color:var(--nh-accent);
  line-height:1;opacity:.3;
}
.nh-stars{color:#ffc107;margin-bottom:.75rem}
.nh-testi-author{display:flex;align-items:center;gap:.8rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--nh-border)}
.nh-avatar{
  width:48px;height:48px;border-radius:50%;
  background:linear-gradient(135deg,var(--nh-primary),var(--nh-accent));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;flex-shrink:0;
}

/* ---------- FAQ ---------- */
.nh-faq{padding:5rem 0;background:#fff}
.nh-faq .accordion-item{
  border:1px solid var(--nh-border);border-radius:var(--nh-radius)!important;
  margin-bottom:.75rem;overflow:hidden;
}
.nh-faq .accordion-button{
  font-weight:600;font-family:'Poppins',sans-serif;color:#102a43;
  padding:1.1rem 1.25rem;background:#fff;
}
.nh-faq .accordion-button:not(.collapsed){background:var(--nh-soft);color:var(--nh-primary);box-shadow:none}
.nh-faq .accordion-button:focus{box-shadow:none;border-color:transparent}
.nh-faq .accordion-body{color:var(--nh-muted);line-height:1.75;padding:1rem 1.25rem 1.25rem}

/* ---------- INSIGHTS / BLOG ---------- */
.nh-insights{padding:5rem 0;background:var(--nh-soft)}
.nh-blog-card{
  background:#fff;border-radius:var(--nh-radius);overflow:hidden;
  box-shadow:var(--nh-shadow-sm);height:100%;
  transition:all .3s ease;text-decoration:none!important;color:inherit;display:block;
}
.nh-blog-card:hover{transform:translateY(-4px);box-shadow:var(--nh-shadow-md);color:inherit}
.nh-blog-img{height:200px;overflow:hidden}
.nh-blog-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;display:block}
.nh-blog-card:hover .nh-blog-img img{transform:scale(1.08)}
.nh-blog-body{padding:1.5rem}
.nh-blog-meta{font-size:.8rem;color:var(--nh-muted);margin-bottom:.5rem;display:flex;gap:1rem;flex-wrap:wrap}
.nh-blog-meta span{display:flex;align-items:center;gap:.35rem}
.nh-blog-card h3{font-size:1.1rem;margin-bottom:.5rem;line-height:1.4}
.nh-blog-card p{color:var(--nh-muted);font-size:.92rem;margin:0}

/* ---------- CTA ---------- */
.nh-cta{padding:4rem 0;color:#fff;background:linear-gradient(135deg,var(--nh-accent) 0%,var(--nh-accent-dark) 100%)}
.nh-cta h2{color:#fff;margin-bottom:.5rem}
.nh-cta p{opacity:.95;margin-bottom:0}
.nh-cta .btn{background:#fff;color:var(--nh-accent-dark);font-weight:600;padding:.75rem 1.75rem}
.nh-cta .btn:hover{background:#102a43;color:#fff}

/* ---------- SEO TEXT BLOCK ---------- */
.nh-seo-block{padding:3rem 0;background:#fff}
.nh-seo-block h2{color:var(--nh-primary);font-size:1.25rem;margin-bottom:1rem}
.nh-seo-block p{color:var(--nh-muted);font-size:.9rem;line-height:1.8}
.nh-seo-block a{color:var(--nh-primary);text-decoration:underline}

/* ---------- LAZY LOAD ---------- */
.nh-section img[loading="lazy"]{opacity:0;transition:opacity .4s ease}
.nh-section img[loading="lazy"].loaded{opacity:1}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px){
  .nh-hero-slide{height:420px}
  .nh-stats{grid-template-columns:repeat(2,1fr)}
  .nh-cat-card{height:220px}
  .nh-categories,.nh-about,.nh-services,.nh-industries,
  .nh-global,.nh-testimonials,.nh-faq,.nh-insights{padding:3rem 0}
}
.nh-section .btn{border-radius:8px}


/* ============================================================================
   PART 2 — ABOUT PAGE ADDITIONS (.ab-*)
   Appended to the base. All class names are unique — no collisions.
   :root variables removed (already defined at top).
   ============================================================================ */

.ab-wrap{
  font-family:'Source Sans Pro','Lato',Arial,sans-serif;
  color:#2b3445; line-height:1.7;
}
.ab-wrap p{margin-bottom:1rem; text-align:justify}
.ab-wrap h1, .ab-wrap h2, .ab-wrap h3{
  font-family:'Lato',Arial,sans-serif;
  color:#0a2540; font-weight:700; letter-spacing:-.01em;
}

/* Breadcrumb */
.ab-crumb{
  background:#f6f8fb; border-radius:6px;
  padding:10px 16px; margin-bottom:20px;
  font-size:13px; color:#6b7280;
}
.ab-crumb a{color:#0b4a8f; text-decoration:none}
.ab-crumb a:hover{text-decoration:underline}
.ab-crumb i{margin:0 6px; color:#b0b7c3; font-style:normal}

/* Hero intro (compact, not full-slider like nh-hero) */
.ab-hero{
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  color:#fff; border-radius:10px;
  padding:36px 32px; margin-bottom:30px;
  position:relative; overflow:hidden;
}
.ab-hero::before{
  content:""; position:absolute; top:-40px; right:-40px;
  width:200px; height:200px; border-radius:50%;
  background:rgba(243,156,18,.15);
}
.ab-hero h1{
  color:#fff; font-size:28px; font-weight:700;
  margin:0 0 12px; line-height:1.25; position:relative;
}
.ab-hero .ab-lead{
  color:rgba(255,255,255,.92); font-size:16px;
  margin:0; position:relative; text-align:left;
}
.ab-hero .ab-tag{
  display:inline-block; padding:5px 14px; border-radius:100px;
  background:rgba(243,156,18,.25); color:#ffd588;
  font-size:12px; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; margin-bottom:12px;
  border:1px solid rgba(243,156,18,.4);
}

/* Section card wrapper */
.ab-section{
  background:#fff; border:1px solid #e5e9f0;
  border-radius:10px; padding:30px;
  margin-bottom:25px;
  box-shadow:0 2px 8px rgba(11,74,143,.04);
}
.ab-section h2{
  font-size:22px; margin:0 0 8px;
  padding-bottom:10px; border-bottom:2px solid #f39c12;
  display:inline-block;
}
.ab-section .ab-eyebrow{
  display:block; font-size:12px; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  color:#f39c12; margin-bottom:6px;
}

/* Stats grid (float-based for Bootstrap 3 compat) */
.ab-stats{list-style:none; padding:0; margin:20px -10px 0}
.ab-stats > li{
  float:left; width:25%; padding:10px; box-sizing:border-box;
}
.ab-stat-box{
  background:#f6f8fb; border:1px solid #e5e9f0;
  border-radius:8px; padding:18px 10px; text-align:center;
  transition:all .25s ease;
}
.ab-stat-box:hover{border-color:#0b4a8f; transform:translateY(-2px)}
.ab-stat-num{
  display:block; font-size:28px; font-weight:800;
  color:#0b4a8f; line-height:1;
}
.ab-stat-lbl{
  display:block; font-size:12px; color:#6b7280;
  text-transform:uppercase; letter-spacing:.05em;
  margin-top:6px; font-weight:600;
}
@media (max-width:767px){.ab-stats > li{width:50%}}

/* Expertise / pillars grid */
.ab-pillars{list-style:none; padding:0; margin:20px -8px 0}
.ab-pillars > li{
  float:left; width:50%; padding:8px; box-sizing:border-box;
}
.ab-pillar{
  background:#f6f8fb; border-left:3px solid #f39c12;
  border-radius:6px; padding:16px 18px; height:100%;
}
.ab-pillar h3{
  font-size:15px; margin:0 0 6px;
  color:#0a2540; font-weight:700;
}
.ab-pillar p{
  font-size:13.5px; color:#52606d; margin:0;
  text-align:left; line-height:1.6;
}
@media (max-width:767px){.ab-pillars > li{width:100%}}

/* Region grid */
.ab-regions{list-style:none; padding:0; margin:18px -8px 0}
.ab-regions > li{
  float:left; width:50%; padding:8px; box-sizing:border-box;
}
.ab-region{
  background:#fff; border:1px solid #e5e9f0;
  border-radius:6px; padding:14px 16px; height:100%;
}
.ab-region h3{
  font-size:14px; margin:0 0 6px; color:#0b4a8f;
  font-weight:700; text-transform:uppercase; letter-spacing:.03em;
}
.ab-region h3 i{color:#f39c12; margin-right:6px}
.ab-region p{
  font-size:13px; color:#52606d; margin:0;
  line-height:1.7; text-align:left;
}
@media (max-width:767px){.ab-regions > li{width:100%}}

/* Cert badges */
.ab-certs{list-style:none; padding:0; margin:18px 0 0}
.ab-certs > li{
  float:left; width:33.333%; padding:8px; box-sizing:border-box;
}
.ab-cert{
  border:1px solid #e5e9f0; border-radius:8px;
  padding:14px; text-align:center; background:#f6f8fb;
}
.ab-cert i{font-size:26px; color:#f39c12; display:block; margin-bottom:6px}
.ab-cert strong{display:block; font-size:13px; color:#0a2540; font-weight:700}
.ab-cert small{display:block; font-size:11px; color:#6b7280; margin-top:3px}
@media (max-width:767px){.ab-certs > li{width:50%}}

/* FAQ (<details>/<summary> — lighter than Bootstrap 5 accordion used by nh-faq) */
.ab-faq{margin-top:16px}
.ab-q{
  border:1px solid #e5e9f0; border-radius:6px;
  margin-bottom:10px; overflow:hidden;
}
.ab-q summary{
  padding:14px 18px; cursor:pointer; background:#fff;
  font-weight:700; color:#0a2540; font-size:14.5px;
  list-style:none; position:relative; padding-right:40px;
}
.ab-q summary::-webkit-details-marker{display:none}
.ab-q summary::after{
  content:"+"; position:absolute; right:18px; top:50%;
  transform:translateY(-50%); font-size:22px; font-weight:400;
  color:#0b4a8f; transition:transform .2s ease;
}
.ab-q[open] summary{background:#f6f8fb; color:#0b4a8f}
.ab-q[open] summary::after{content:"\2013"}
.ab-q div{
  padding:0 18px 16px; font-size:14px;
  color:#52606d; line-height:1.75;
}
.ab-q div p{text-align:left; margin:0}

/* Inline CTA block (compact version inside a section) */
.ab-cta{
  background:linear-gradient(135deg,#f39c12 0%,#d4840a 100%);
  color:#fff; border-radius:10px; padding:24px 28px;
  margin-bottom:25px; text-align:center;
}
.ab-cta h2{color:#fff; font-size:20px; margin:0 0 6px; border:none}
.ab-cta p{color:rgba(255,255,255,.95); margin:0 0 14px; text-align:center}
.ab-cta .ab-cta-btn{
  display:inline-block; padding:10px 24px; margin:4px;
  background:#fff; color:#d4840a; border-radius:6px;
  font-weight:700; text-decoration:none;
  transition:all .2s ease;
}
.ab-cta .ab-cta-btn:hover{
  background:#0a2540; color:#fff; transform:translateY(-2px);
}
.ab-cta .ab-cta-btn.alt{background:transparent; color:#fff; border:2px solid #fff}
.ab-cta .ab-cta-btn.alt:hover{background:#fff; color:#d4840a}

/* Clearfix for float layouts above */
.ab-wrap .row:after, .ab-stats:after, .ab-pillars:after,
.ab-regions:after, .ab-certs:after{
  content:""; display:table; clear:both;
}

/* Sector quick-links block */
.ab-links{
  background:#f6f8fb; border-radius:8px;
  padding:18px 20px; margin-top:10px;
  font-size:13.5px; line-height:2;
}
.ab-links a{
  color:#0b4a8f; text-decoration:none; font-weight:600;
  margin-right:14px; display:inline-block;
}
.ab-links a::before{
  content:"\203A"; color:#f39c12;
  margin-right:4px; font-weight:900;
}
.ab-links a:hover{color:#f39c12}


/* =============================================================================
   PART 3 — LEFT SIDEBAR PANEL (.left-menu)
   Used on inner pages (about.php, product pages, etc.) inside:
     <div class="col-md-3 fleft left-menu">
        <?php include('left_pannel.php') ?>
     </div>
   Styles the category tree: top-level links with nested sub-lists.
   ============================================================================= */
/* =============================================================================
   PART 3 — LEFT SIDEBAR PANEL (#cssmenu)
   Matches the actual markup used by left_pannel.php:
     <div class="col-md-3 fleft left-menu">
       <div id="cssmenu">
         <ul>
           <li class="has-sub expandable">
             <a href="..."><span>Category <strong></strong></span></a>
             <ul>
               <li><a href="...">Subcategory</a></li>
               ...
             </ul>
           </li>
         </ul>
       </div>
     </div>
   Keeps the original jQuery toggle behaviour (.active class on parent <li>).
   ============================================================================= */

.left-menu{padding-right:0 !important}

/* ---------- Reset (preserved from original) ---------- */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a{
  margin:0; padding:0; border:0;
  list-style:none; font-weight:normal;
  text-decoration:none; line-height:1.3;
  font-size:14px; position:relative;
}

/* ---------- Panel wrapper card ---------- */
#cssmenu{
  font-family:'Inter','Source Sans Pro',Arial,sans-serif;
  background:#fff;
  border:1px solid #e5e9f0;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(11,74,143,.05);
  overflow:hidden;
  margin-bottom:20px;
}

/* ---------- Optional heading (add <h4> inside #cssmenu in left_pannel.php) ---------- */
#cssmenu > h3,
#cssmenu > h4{
  margin:0;
  padding:14px 18px;
  font-family:'Poppins','Lato',Arial,sans-serif;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* =====================================================
   TOP-LEVEL CATEGORIES
   ===================================================== */
#cssmenu > ul{padding:0; margin:0}

#cssmenu > ul > li{
  margin:0;
  border-bottom:1px solid #eef2f7;  /* softer than original #ccc */
  position:relative;
}
#cssmenu > ul > li:last-child{border-bottom:none}

#cssmenu > ul > li > a{
  display:block;
  font-size:14px;
  color:#0a2540;
  font-weight:600;
  background:#fff;
  transition:all .2s ease;
}

#cssmenu > ul > li > a > span{
  display:block;
  padding:12px 40px 12px 28px; /* left for chevron, right for strong toggle */
  position:relative;
  line-height:1.4;
}
#cssmenu > ul > li > a > span::before{
  content:"\203A"; /* › chevron */
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  color:#f39c12;
  font-weight:900;
  font-size:14px;
  transition:transform .2s ease;
}

#cssmenu > ul > li > a:hover{
  text-decoration:none;
  background:#f6f8fb;
  color:#0b4a8f;
}
#cssmenu > ul > li > a:hover > span::before{
  transform:translateY(-50%) translateX(3px);
}

/* Active / currently-open state
   (this is the class the jQuery toggles on the <li>) */
#cssmenu > ul > li.active > a,
#cssmenu > ul > li.has-sub.active > a,
#cssmenu > ul > li.has-sub.active > a span{
  background:#f6f8fb;
  color:#0b4a8f;
}
#cssmenu > ul > li.active{
  border-left:3px solid #f39c12;
}
#cssmenu > ul > li.active > a > span{padding-left:25px}

/* Plain (non-class) active highlight — kept from original */
#cssmenu > ul > li a.active{
  border-bottom:none;
  background:#f6f8fb;
  color:#0b4a8f;
}

/* =====================================================
   EXPAND/COLLAPSE TOGGLE (the <strong> inside <span>)
   ===================================================== */
.expandable{position:relative}
.expandable strong{
  float:right;
  position:absolute;
  right:0;
  top:0;
  width:36px;
  height:100%;
  line-height:42px;
  font-size:14px;
  z-index:2;
  text-align:center;
  cursor:pointer;
  color:#6b7280;
  transition:color .2s ease;
}
.expandable strong:after{
  content:'\f067'; /* FontAwesome 'plus' */
  font-family:FontAwesome;
  display:inline-block;
  transition:transform .2s ease;
}
.expandable:hover strong{color:#0b4a8f}
.active.expandable strong{color:#0b4a8f}
.active.expandable strong:after{
  content:'\f068'; /* FontAwesome 'minus' */
}

/* =====================================================
   SUB-MENU (nested <ul> — hidden by default, shown when parent .active)
   ===================================================== */
#cssmenu ul ul{
  padding:6px 12px 10px 26px;
  display:none;
  background:#fafbfd;
  border-top:1px solid #eef2f7;
}

#cssmenu > ul > li.has-sub.active > ul,
#cssmenu > ul > li.active.expandable > ul{
  display:block;
}

#cssmenu ul ul li{
  padding:0;
  border-bottom:1px solid #f5f5f5;
}
#cssmenu ul ul li:last-child{border-bottom:none}

#cssmenu ul ul a{
  display:block;
  color:#52606d;
  font-size:13px;
  padding:7px 10px 7px 14px;
  border-radius:4px;
  line-height:1.45;
  transition:all .2s ease;
  position:relative;
}
#cssmenu ul ul a::before{
  content:"";
  position:absolute;
  left:4px;
  top:50%;
  width:4px; height:4px;
  border-radius:50%;
  background:#cbd5e1;
  transform:translateY(-50%);
  transition:background .2s ease;
}
#cssmenu ul ul a:hover{
  color:#0b4a8f;
  background:#fff;
  padding-left:18px;
}
#cssmenu ul ul a:hover::before{background:#f39c12}

/* Currently-selected subcategory */
#cssmenu ul ul a.active,
#cssmenu ul ul li.active > a{
  color:#0b4a8f;
  background:#fff;
  font-weight:600;
}
#cssmenu ul ul a.active::before,
#cssmenu ul ul li.active > a::before{background:#f39c12}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:991px){
  #cssmenu{margin-top:24px}
}
@media (max-width:767px){
  #cssmenu > ul > li > a > span{font-size:14px; padding:13px 40px 13px 28px}
  #cssmenu ul ul{padding-left:22px}
}


/* =============================================================================
   PART 4 — MOE TENDERS PAGE EXTRAS (.mt-*)
   Append to naugra-home.css
   
   Only adds what's NOT covered by existing .ab-* classes:
     .mt-funders  — funding-agencies grid (8 branded pills)
     .mt-steps    — numbered workflow (tender process, 6 steps)
   Everything else on moetenders.php reuses .ab-hero, .ab-section,
   .ab-stats, .ab-pillars, .ab-regions, .ab-certs, .ab-cta, .ab-faq,
   .ab-links and .ab-q.
   ============================================================================= */

/* ---------- Funding agencies grid ---------- */
.mt-funders{
  list-style:none; padding:0; margin:20px -8px 0;
}
.mt-funders > li{
  float:left; width:25%; padding:8px; box-sizing:border-box;
}
.mt-funders:after{content:""; display:table; clear:both}
.mt-funder{
  background:#fff; border:1px solid #e5e9f0;
  border-top:3px solid #0b4a8f;
  border-radius:8px; padding:14px 12px;
  text-align:center; height:100%;
  transition:all .25s ease;
}
.mt-funder:hover{
  border-top-color:#f39c12;
  box-shadow:0 4px 12px rgba(11,74,143,.08);
  transform:translateY(-2px);
}
.mt-funder strong{
  display:block; font-size:13px; color:#0a2540;
  font-weight:700; line-height:1.3; margin-bottom:4px;
}
.mt-funder small{
  display:block; font-size:11px; color:#6b7280;
  line-height:1.4;
}
@media (max-width:991px){.mt-funders > li{width:50%}}
@media (max-width:480px){.mt-funders > li{width:100%}}


/* ---------- Tender process — numbered workflow steps ---------- */
.mt-steps{
  list-style:none; padding:0; margin:20px 0 0;
  counter-reset:none;
}
.mt-steps > li{
  display:flex; align-items:flex-start; gap:18px;
  padding:18px 0;
  border-bottom:1px dashed #e5e9f0;
  position:relative;
}
.mt-steps > li:last-child{border-bottom:none; padding-bottom:0}
.mt-steps > li:first-child{padding-top:0}

.mt-step-num{
  flex-shrink:0;
  width:48px; height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:'Lato',Arial,sans-serif;
  font-size:15px; font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 3px 8px rgba(11,74,143,.22);
  position:relative;
}
.mt-step-num::after{
  /* vertical connecting line between steps */
  content:"";
  position:absolute;
  top:100%; left:50%;
  width:2px; height:calc(100% - 10px);
  background:#e5e9f0;
  transform:translateX(-50%);
  margin-top:8px;
}
.mt-steps > li:last-child .mt-step-num::after{display:none}

.mt-steps > li > div{flex:1; min-width:0}
.mt-steps h3{
  font-size:15px; margin:4px 0 4px;
  color:#0a2540; font-weight:700;
  font-family:'Lato',Arial,sans-serif;
}
.mt-steps p{
  font-size:13.5px; color:#52606d; margin:0;
  line-height:1.65; text-align:left;
}

@media (max-width:480px){
  .mt-steps > li{gap:12px}
  .mt-step-num{width:40px; height:40px; font-size:13px}
}

/* =============================================================================
   PART 5 — PRODUCTS PAGE EXTRAS (.pc-*)
   Append to naugra-home.css
   
   Only adds what's NOT covered by existing .ab-* classes:
     .pc-cat-section   — wrapper for each category block on products.php
     .pc-cat-head      — the top-box (H1/H2 + description) inside a category block
     .pc-cat-title     — styled category heading
     .pc-cat-desc      — muted description paragraph
     .pc-grid          — responsive 3-column subcategory grid
     .pc-card          — subcategory card with image + name
   Everything else (hero, stats, CTA, links block) reuses .ab-* classes.
   ============================================================================= */

/* ---------- Category section (wraps each parent category + its subs) ---------- */
.pc-cat-section{
  padding:24px 28px;
  margin-bottom:20px;
}
.pc-cat-head{
  padding-bottom:14px;
  margin-bottom:18px;
  border-bottom:1px solid #e5e9f0;
}
.pc-cat-title{
  font-family:'Lato','Poppins',Arial,sans-serif;
  font-size:22px;
  font-weight:700;
  color:#0a2540;
  margin:0 0 6px;
  padding-bottom:6px;
  border-bottom:2px solid #f39c12;
  display:inline-block;
  line-height:1.25;
}
.pc-cat-title a{
  color:#0a2540;
  text-decoration:none;
  transition:color .2s ease;
}
.pc-cat-title a:hover{color:#0b4a8f}
.pc-cat-desc{
  font-size:13.5px;
  color:#52606d;
  line-height:1.7;
  margin:8px 0 0;
  text-align:left;
}

/* ---------- 3-column subcategory grid ---------- */
.pc-grid{
  display:flex;
  flex-wrap:wrap;
  margin:0 -8px;
}
.pc-grid::after{content:""; display:table; clear:both}

.pc-card{
  display:block;
  width:33.333%;
  box-sizing:border-box;
  padding:8px;
  text-decoration:none !important;
  color:inherit;
  float:left;
}
.pc-card-img{
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:8px;
  overflow:hidden;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
  position:relative;
}
.pc-card-img img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:transform .4s ease;
}
.pc-card-placeholder{
  font-size:42px;
  color:#cbd5e1;
}
.pc-card-name{
  margin-top:10px;
  font-size:13.5px;
  font-weight:600;
  color:#0a2540;
  line-height:1.4;
  text-align:center;
  transition:color .2s ease;
  padding:0 4px;
}
.pc-card:hover .pc-card-img{
  border-color:#0b4a8f;
  box-shadow:0 6px 16px rgba(11,74,143,.12);
  transform:translateY(-2px);
}
.pc-card:hover .pc-card-img img{transform:scale(1.06)}
.pc-card:hover .pc-card-name{color:#0b4a8f}

/* ---------- Responsive subcategory grid ---------- */
@media (max-width:991px){
  .pc-card{width:50%}
  .pc-card-img{height:160px}
}
@media (max-width:480px){
  .pc-card{width:100%}
  .pc-card-img{height:200px}
  .pc-cat-section{padding:18px 16px}
  .pc-cat-title{font-size:18px}
}

/* ---------- Product listing section — subtle refresh of .productlistbox ---------- */
.pc-products-section .productlistbox{
  border:1px solid #e5e9f0;
  border-radius:8px;
  padding:14px;
  margin-bottom:16px;
  background:#fff;
  transition:all .3s ease;
  height:calc(100% - 16px);
}
.pc-products-section .productlistbox:hover{
  border-color:#0b4a8f;
  box-shadow:0 6px 16px rgba(11,74,143,.1);
  transform:translateY(-2px);
}
.pc-products-section .productlistbox .thumb{
  background:#f6f8fb;
  border-radius:6px;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:10px;
}
.pc-products-section .productlistbox .thumb img{
  border:none !important;
  background:transparent;
  padding:0;
  max-height:100%;
  width:auto;
  max-width:100%;
}
.pc-products-section .productlistbox .dtls h2{
  font-size:14px;
  font-weight:700;
  margin:0 0 10px;
  line-height:1.35;
  min-height:38px;
}
.pc-products-section .productlistbox .dtls h2 a{
  color:#0a2540;
  text-decoration:none;
  transition:color .2s ease;
}
.pc-products-section .productlistbox .dtls h2 a:hover{color:#0b4a8f}
.pc-products-section .productlistbox .btn-sectn{
  border-top:1px solid #f0f2f6;
  padding-top:10px;
  margin-top:6px;
}
.pc-products-section .productlistbox .btn-sectn .btn{
  font-size:12px;
  padding:6px 10px;
  border-radius:5px;
  font-weight:600;
  background:#f6f8fb;
  color:#0b4a8f;
  border:1px solid #e5e9f0;
  margin-right:4px;
  transition:all .2s ease;
}
.pc-products-section .productlistbox .btn-sectn .btn:hover{
  background:#0b4a8f;
  color:#fff;
  border-color:#0b4a8f;
}
.pc-products-section .productlistbox .btn-sectn .btn i{margin-right:4px}


/* =============================================================================
   PART 6 — PRODUCT DETAIL PAGE EXTRAS (.pd-*)
   Append to naugra-home.css
   
   New classes for the single-product detail view:
     .pd-top-row       — breadcrumb + print row
     .pd-crumb         — breadcrumb override inside the row
     .pd-print         — print button
     .pd-main          — main product block wrapper
     .pd-gallery       — product image box
     .pd-badges        — trust badges below the image
     .pd-info          — product info column
     .pd-cat-tag       — category tag above title
     .pd-title         — H1 product name
     .pd-code          — product code line
     .pd-meta          — 3 small meta items (Available, Shipping, Datasheet)
     .pd-btn-primary   — big orange Add to Cart button
     .pd-actions       — secondary actions row (Enquire / Tell A Friend / Wish List)
     .pd-contact       — contact strip with email+phone
     .pd-desc          — description section container
     .pd-desc-body     — description content area (renders HTML from DB)
     .pd-related-grid  — related products grid (reuses .pc-card style)
   Everything else reuses .ab-* classes.
   ============================================================================= */

/* ---------- Breadcrumb + Print row ---------- */
.pd-top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
  gap:12px;
  flex-wrap:wrap;
}
.pd-crumb{margin-bottom:0 !important; flex:1; min-width:200px}
.pd-print a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  background:#fff;
  border:1px solid #e5e9f0;
  border-radius:6px;
  color:#0b4a8f;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:all .2s ease;
  white-space:nowrap;
}
.pd-print a:hover{
  background:#0b4a8f;
  color:#fff;
  border-color:#0b4a8f;
}

/* ---------- Main product block ---------- */
.pd-main{padding:24px 28px; margin-bottom:20px}
.pd-main .row{margin-right:-12px; margin-left:-12px}

/* ---------- Product gallery / image ---------- */
.pd-gallery{
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:10px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
  overflow:hidden;
  transition:box-shadow .3s ease;
}
.pd-gallery:hover{box-shadow:0 8px 24px rgba(11,74,143,.1)}
.pd-gallery img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:transform .4s ease;
}
.pd-gallery:hover img{transform:scale(1.03)}
.pd-gallery-placeholder{
  font-size:64px;
  color:#cbd5e1;
}

/* ---------- Trust badges below image ---------- */
.pd-badges{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.pd-badges li{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:6px;
  font-size:12.5px;
  font-weight:600;
  color:#0a2540;
  line-height:1.3;
}
.pd-badges li i{
  color:#f39c12;
  font-size:16px;
  flex-shrink:0;
}

/* ---------- Product info column ---------- */
.pd-info{padding:4px 8px}
.pd-cat-tag{margin-bottom:12px !important}
.pd-title{
  font-family:'Lato','Poppins',Arial,sans-serif;
  font-size:26px;
  font-weight:700;
  color:#0a2540;
  margin:0 0 8px;
  line-height:1.25;
}
.pd-code{
  font-size:13px;
  color:#6b7280;
  margin-bottom:16px;
  padding-bottom:14px;
  border-bottom:1px solid #e5e9f0;
}
.pd-code strong{
  color:#0b4a8f;
  font-weight:700;
  letter-spacing:.02em;
}

/* ---------- Meta info (3 bullets) ---------- */
.pd-meta{margin:0 0 20px}
.pd-meta-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  color:#52606d;
  padding:4px 0;
  line-height:1.4;
}
.pd-meta-item i{
  color:#28a745;
  font-size:15px;
  width:16px;
  flex-shrink:0;
}

/* ---------- Primary CTA (Add to Cart) ---------- */
.pd-info form{margin:0 0 14px}
.pd-btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:14px 22px;
  background:linear-gradient(135deg,#f39c12 0%,#d4840a 100%);
  color:#fff !important;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  border:none;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(243,156,18,.25);
  transition:all .25s ease;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.pd-btn-primary:hover{
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  box-shadow:0 6px 18px rgba(11,74,143,.3);
  transform:translateY(-2px);
  color:#fff !important;
  text-decoration:none;
}
.pd-btn-primary i{font-size:16px}

/* ---------- Secondary actions (Enquire / Tell / Wishlist) ---------- */
.pd-actions{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.pd-actions li{flex:1; min-width:100px}
.pd-actions li a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 8px;
  background:#fff;
  border:1px solid #e5e9f0;
  border-radius:6px;
  color:#0b4a8f;
  font-size:12.5px;
  font-weight:600;
  text-decoration:none;
  transition:all .2s ease;
  text-align:center;
  line-height:1.3;
}
.pd-actions li a i{color:#f39c12; font-size:14px}
.pd-actions li a:hover{
  background:#f6f8fb;
  border-color:#0b4a8f;
  color:#0b4a8f;
  transform:translateY(-1px);
}

/* ---------- Contact strip ---------- */
.pd-contact{
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-left:3px solid #0b4a8f;
  border-radius:6px;
  padding:14px 16px;
  margin-top:4px;
}
.pd-contact strong{
  display:block;
  font-size:13.5px;
  color:#0a2540;
  margin-bottom:8px;
}
.pd-contact a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-right:14px;
  color:#0b4a8f;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  padding:4px 0;
}
.pd-contact a i{color:#f39c12}
.pd-contact a:hover{color:#f39c12; text-decoration:none}

/* ---------- Description / Specification section ---------- */
.pd-desc{padding:28px 30px}
.pd-desc-body{
  font-size:14px;
  line-height:1.75;
  color:#2b3445;
  margin-top:14px;
}
.pd-desc-body p{
  margin-bottom:12px;
  text-align:left;
}
.pd-desc-body strong{color:#0a2540}
.pd-desc-body ul, .pd-desc-body ol{
  margin:10px 0 14px;
  padding-left:22px;
}
.pd-desc-body li{
  margin-bottom:6px;
  color:#52606d;
}
.pd-desc-body table{
  width:100%;
  margin:14px 0;
  border-collapse:collapse;
  font-size:13.5px;
}
.pd-desc-body table th,
.pd-desc-body table td{
  padding:8px 12px;
  border:1px solid #e5e9f0;
  text-align:left;
}
.pd-desc-body table th{
  background:#f6f8fb;
  color:#0a2540;
  font-weight:700;
}
.pd-desc-body img{
  max-width:100%;
  height:auto;
  border-radius:6px;
  margin:10px 0;
}

/* ---------- Related products grid ---------- */
.pd-related-grid{
  display:flex;
  flex-wrap:wrap;
  margin:14px -8px 0;
}
.pd-related-grid .pc-card{width:25%}
@media (max-width:991px){.pd-related-grid .pc-card{width:33.333%}}
@media (max-width:640px){.pd-related-grid .pc-card{width:50%}}
@media (max-width:480px){.pd-related-grid .pc-card{width:100%}}

/* ---------- Responsive ---------- */
@media (max-width:767px){
  .pd-main{padding:18px 16px}
  .pd-info{padding:18px 0 0}
  .pd-title{font-size:20px}
  .pd-gallery{min-height:240px; padding:12px}
  .pd-badges{grid-template-columns:repeat(2,1fr)}
  .pd-top-row{flex-direction:column; align-items:stretch}
  .pd-print{text-align:right}
  .pd-actions li{min-width:80px; font-size:11.5px}
}

/* =============================================================================
   PART 7 — SEARCH PAGE EXTRAS (.sr-*)
   Append to naugra-home.css
   
   New classes for search.php only:
     .sr-hero              — overrides for hero when it contains a search form
     .sr-search-form       — the search input form inside the hero
     .sr-input-group       — flex row for the input + button
     .sr-input             — name/code text inputs
     .sr-btn               — main blue search button
     .sr-alpha-section     — A-Z browse section
     .sr-alpha-grid        — 13+ column grid of alpha buttons
     .sr-alpha-btn         — single A-Z tile
     .sr-results-head      — title + count row at top of results
     .sr-count             — "X products found" badge
     .sr-results-list      — vertical list of result cards
     .sr-result            — single result card (thumb + body)
     .sr-result-img        — thumbnail area
     .sr-result-placeholder — fallback when no image
     .sr-result-body       — text + actions area
     .sr-result-title      — H3 product name
     .sr-result-desc       — truncated description
     .sr-result-code       — product code line
     .sr-result-actions    — View Details + Add to Cart row
     .sr-btn-outline       — "View Details" outline button
     .sr-btn-cart          — "Add to Cart" orange button
     .sr-pagination        — pagination wrapper (styles existing paginate() output)
     .sr-empty             — "No results found" empty state
   ============================================================================= */

/* ---------- Hero with search form ---------- */
.sr-hero{
  padding:32px 36px !important;
}
.sr-hero h1{font-size:26px !important}

.sr-search-form{
  margin-top:20px;
  position:relative;
  z-index:2;
}
.sr-input-group{
  display:flex;
  gap:8px;
  max-width:640px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  border-radius:10px;
  padding:6px;
  backdrop-filter:blur(6px);
}
.sr-input{
  flex:1;
  padding:11px 14px;
  border:none;
  background:#fff;
  border-radius:6px;
  font-size:14px;
  color:#0a2540;
  font-family:inherit;
  outline:none;
}
.sr-input:focus{box-shadow:0 0 0 3px rgba(243,156,18,.4)}
.sr-input-sm{max-width:140px}
.sr-input::placeholder{color:#6b7280}

.sr-btn{
  padding:11px 20px;
  background:#f39c12;
  color:#fff !important;
  border:none;
  border-radius:6px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  text-decoration:none;
}
.sr-btn:hover{background:#d4840a; transform:translateY(-1px)}

@media (max-width:640px){
  .sr-input-group{flex-wrap:wrap}
  .sr-input, .sr-input-sm{max-width:100%; flex:1 1 100%}
  .sr-btn{flex:1 1 100%; justify-content:center}
}

/* ---------- A-Z alpha browse ---------- */
.sr-alpha-section{padding:24px 28px}
.sr-alpha-grid{
  display:grid;
  grid-template-columns:repeat(13,1fr);
  gap:6px;
  margin-top:14px;
}
.sr-alpha-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:38px;
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:6px;
  color:#0a2540;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  font-family:'Lato','Poppins',Arial,sans-serif;
  transition:all .2s ease;
}
.sr-alpha-btn:hover{
  background:#0b4a8f;
  color:#fff;
  border-color:#0b4a8f;
  text-decoration:none;
  transform:translateY(-1px);
}
.sr-alpha-btn.active{
  background:#f39c12;
  color:#fff;
  border-color:#f39c12;
  box-shadow:0 3px 8px rgba(243,156,18,.3);
}
@media (max-width:991px){
  .sr-alpha-grid{grid-template-columns:repeat(9,1fr)}
}
@media (max-width:640px){
  .sr-alpha-grid{grid-template-columns:repeat(7,1fr)}
  .sr-alpha-btn{height:34px; font-size:12px}
}

/* ---------- Results heading row ---------- */
.sr-results-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  padding-bottom:14px;
  margin-bottom:14px;
  border-bottom:1px solid #e5e9f0;
  flex-wrap:wrap;
}
.sr-results-head h2{margin:0 !important; padding-bottom:4px !important}
.sr-count{
  font-size:13.5px;
  color:#52606d;
  background:#f6f8fb;
  padding:8px 14px;
  border-radius:6px;
  border:1px solid #e5e9f0;
  white-space:nowrap;
}
.sr-count strong{color:#0b4a8f; font-size:15px}

/* ---------- Single result card ---------- */
.sr-results-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:12px;
}
.sr-result{
  display:flex;
  gap:18px;
  padding:16px;
  background:#fff;
  border:1px solid #e5e9f0;
  border-radius:8px;
  transition:all .3s ease;
}
.sr-result:hover{
  border-color:#0b4a8f;
  box-shadow:0 6px 16px rgba(11,74,143,.08);
  transform:translateY(-1px);
}

/* Thumbnail */
.sr-result-img{
  flex-shrink:0;
  width:140px;
  height:140px;
  background:#f6f8fb;
  border:1px solid #eef2f7;
  border-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sr-result-img a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}
.sr-result-img img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:transform .4s ease;
}
.sr-result:hover .sr-result-img img{transform:scale(1.05)}
.sr-result-placeholder{
  color:#cbd5e1;
  font-size:38px;
}

/* Body */
.sr-result-body{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.sr-result-title{
  font-family:'Lato','Poppins',Arial,sans-serif;
  font-size:16px;
  font-weight:700;
  margin:0 0 8px;
  line-height:1.3;
}
.sr-result-title a{
  color:#0a2540;
  text-decoration:none;
  transition:color .2s ease;
}
.sr-result-title a:hover{color:#0b4a8f}

.sr-result-desc{
  font-size:13.5px;
  color:#52606d;
  margin:0 0 10px;
  line-height:1.6;
  text-align:left;
}
.sr-result-code{
  font-size:12.5px;
  color:#6b7280;
  margin-bottom:12px;
}
.sr-result-code strong{
  color:#0b4a8f;
  font-weight:700;
  letter-spacing:.02em;
}

/* Action buttons */
.sr-result-actions{
  display:flex;
  gap:8px;
  margin:auto 0 0;
  flex-wrap:wrap;
}
.sr-btn-outline,
.sr-btn-cart{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:6px;
  font-weight:600;
  font-size:13px;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
  transition:all .2s ease;
  font-family:inherit;
  white-space:nowrap;
}
.sr-btn-outline{
  background:#fff;
  color:#0b4a8f;
  border-color:#e5e9f0;
}
.sr-btn-outline:hover{
  background:#0b4a8f;
  color:#fff;
  border-color:#0b4a8f;
  text-decoration:none;
}
.sr-btn-cart{
  background:linear-gradient(135deg,#f39c12 0%,#d4840a 100%);
  color:#fff;
  border:none;
}
.sr-btn-cart:hover{
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(11,74,143,.2);
}

/* Mobile */
@media (max-width:640px){
  .sr-result{flex-direction:column; gap:12px; padding:12px}
  .sr-result-img{width:100%; height:200px}
  .sr-result-actions .sr-btn-outline,
  .sr-result-actions .sr-btn-cart{flex:1; justify-content:center}
}

/* ---------- Pagination ---------- */
.sr-pagination{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid #e5e9f0;
  text-align:center;
  font-size:14px;
}
.sr-pagination a,
.sr-pagination strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 10px;
  margin:0 3px;
  background:#fff;
  border:1px solid #e5e9f0;
  border-radius:6px;
  color:#0b4a8f;
  font-weight:600;
  text-decoration:none;
  transition:all .2s ease;
}
.sr-pagination a:hover{
  background:#0b4a8f;
  color:#fff;
  border-color:#0b4a8f;
  text-decoration:none;
}
.sr-pagination strong{
  background:#f39c12;
  color:#fff;
  border-color:#f39c12;
}

/* ---------- Empty state ---------- */
.sr-empty{
  text-align:center;
  padding:48px 28px !important;
}
.sr-empty-icon{
  font-size:52px;
  color:#cbd5e1;
  display:block;
  margin-bottom:16px;
}
.sr-empty h2{
  border:none !important;
  padding:0 !important;
  margin:0 0 10px !important;
  display:block !important;
  font-size:20px !important;
  color:#0a2540;
}
.sr-empty p{
  color:#52606d;
  margin:0 0 20px;
  text-align:center;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
}
.sr-empty a{color:#0b4a8f; font-weight:600}


/* =============================================================================
   PART 8 — SHOPPING CART / REQUEST BAG EXTRAS (.cr-*)
   Append to naugra-home.css
   
   New classes for shopping_cart.php only:
     .cr-hero              — hero override for cart page
     .cr-section           — cart table section wrapper
     .cr-head              — title + count row at top
     .cr-count             — "N items" badge
     .cr-form              — wraps the table + actions
     .cr-table             — main cart table (desktop)
     .cr-col-*             — table column widths
     .cr-check             — custom styled checkbox for Remove
     .cr-product           — flex row: thumb + name
     .cr-thumb             — product thumbnail inside cart row
     .cr-thumb-placeholder — fallback when no image
     .cr-product-info      — text column
     .cr-product-name      — product name link
     .cr-code              — product code pill
     .cr-qty-input         — quantity number input
     .cr-hint              — info strip above actions
     .cr-actions           — action buttons row (Add More / Update / Proceed)
     .cr-btn-outline       — secondary button
     .cr-btn-update        — blue update button
     .cr-btn-proceed       — orange proceed button
     .cr-steps             — "What happens next" numbered workflow
     .cr-step-num          — numbered circle for each step
     .cr-empty             — empty cart state card
     .cr-empty-icon        — big shopping-basket icon
     .cr-empty-actions     — button row for empty state
   ============================================================================= */

/* ---------- Hero override ---------- */
.cr-hero{padding:28px 32px !important}
.cr-hero h1{font-size:26px !important}

/* ---------- Section head ---------- */
.cr-section{padding:26px 30px}
.cr-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding-bottom:14px;
  margin-bottom:16px;
  border-bottom:1px solid #e5e9f0;
  gap:14px;
  flex-wrap:wrap;
}
.cr-head h2{margin:0 !important; padding-bottom:4px !important}
.cr-count{
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  padding:8px 14px;
  border-radius:6px;
  font-size:13.5px;
  color:#52606d;
  white-space:nowrap;
}
.cr-count strong{color:#0b4a8f; font-size:15px}

/* ---------- Cart form wrapper ---------- */
.cr-form{margin:0}

/* ---------- Cart table ---------- */
.cr-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-size:13.5px;
  margin-bottom:16px;
}
.cr-table thead th{
  background:#f6f8fb;
  color:#0a2540;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:11.5px;
  padding:12px 14px;
  border-bottom:1px solid #e5e9f0;
  text-align:left;
}
.cr-table tbody td{
  padding:14px;
  border-bottom:1px solid #eef2f7;
  vertical-align:middle;
  background:#fff;
}
.cr-table tbody tr:hover td{background:#fafbfd}
.cr-table tbody tr:last-child td{border-bottom:none}

.cr-col-remove{width:70px; text-align:center}
.cr-col-code{width:140px}
.cr-col-name{min-width:0}
.cr-col-qty{width:110px; text-align:center}

/* ---------- Custom styled checkbox for Remove ---------- */
.cr-check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
  margin:0;
}
.cr-check input[type="checkbox"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.cr-check-mark{
  width:22px;
  height:22px;
  background:#fff;
  border:2px solid #cbd5e1;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}
.cr-check-mark::after{
  content:"\f00d"; /* fa-times */
  font-family:FontAwesome;
  color:#fff;
  font-size:11px;
  opacity:0;
  transition:opacity .2s ease;
}
.cr-check:hover .cr-check-mark{
  border-color:#e74c3c;
}
.cr-check input:checked ~ .cr-check-mark{
  background:#e74c3c;
  border-color:#e74c3c;
}
.cr-check input:checked ~ .cr-check-mark::after{opacity:1}

/* ---------- Product cell (thumb + name) ---------- */
.cr-product{
  display:flex;
  align-items:center;
  gap:12px;
}
.cr-thumb{
  flex-shrink:0;
  width:56px;
  height:56px;
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}
.cr-thumb:hover{border-color:#0b4a8f}
.cr-thumb img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
.cr-thumb-placeholder{
  color:#cbd5e1;
  font-size:22px;
  text-decoration:none;
}
.cr-product-info{flex:1; min-width:0}
.cr-product-name{
  color:#0a2540;
  font-weight:600;
  font-size:13.5px;
  line-height:1.4;
  text-decoration:none;
  transition:color .2s ease;
  display:block;
}
.cr-product-name:hover{color:#0b4a8f; text-decoration:none}

/* ---------- Product code pill ---------- */
.cr-code{
  display:inline-block;
  padding:3px 8px;
  background:#f6f8fb;
  border:1px solid #e5e9f0;
  border-radius:4px;
  color:#0b4a8f;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  font-family:'Lato',Arial,sans-serif;
}

/* ---------- Quantity input ---------- */
.cr-qty-input{
  width:70px;
  padding:8px 10px;
  border:1px solid #e5e9f0;
  border-radius:5px;
  text-align:center;
  font-size:14px;
  font-weight:600;
  color:#0a2540;
  background:#fff;
  font-family:inherit;
  outline:none;
  transition:all .2s ease;
}
.cr-qty-input:focus{
  border-color:#0b4a8f;
  box-shadow:0 0 0 3px rgba(11,74,143,.1);
}

/* ---------- Info hint strip ---------- */
.cr-hint{
  background:#fef8ec;
  border:1px solid #fce5a8;
  border-left:3px solid #f39c12;
  border-radius:6px;
  padding:11px 14px;
  font-size:13px;
  color:#52606d;
  margin-bottom:18px;
  line-height:1.5;
}
.cr-hint i{color:#f39c12; margin-right:6px}
.cr-hint strong{color:#0a2540}

/* ---------- Action buttons row ---------- */
.cr-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
  padding-top:16px;
  border-top:1px solid #e5e9f0;
  flex-wrap:wrap;
}

.cr-btn-outline,
.cr-btn-update,
.cr-btn-proceed{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:11px 20px;
  border-radius:7px;
  font-weight:700;
  font-size:13.5px;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:all .25s ease;
  font-family:inherit;
  white-space:nowrap;
}
.cr-btn-outline{
  background:#fff;
  color:#0b4a8f;
  border:1px solid #e5e9f0;
  margin-right:auto; /* push Add More to left, others to right */
}
.cr-btn-outline:hover{
  background:#f6f8fb;
  border-color:#0b4a8f;
  color:#0b4a8f;
  text-decoration:none;
  transform:translateY(-1px);
}
.cr-btn-update{
  background:#fff;
  color:#0b4a8f;
  border:1px solid #0b4a8f;
}
.cr-btn-update:hover{
  background:#0b4a8f;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(11,74,143,.2);
}
.cr-btn-proceed{
  background:linear-gradient(135deg,#f39c12 0%,#d4840a 100%);
  color:#fff;
  box-shadow:0 3px 10px rgba(243,156,18,.25);
}
.cr-btn-proceed:hover{
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  color:#fff;
  text-decoration:none;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(11,74,143,.3);
}

/* ---------- "What Happens Next" steps ---------- */
.cr-steps{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  counter-reset:none;
}
.cr-steps li{
  display:flex;
  gap:16px;
  padding:14px 0;
  border-bottom:1px dashed #e5e9f0;
  align-items:flex-start;
}
.cr-steps li:last-child{border-bottom:none; padding-bottom:0}
.cr-steps li:first-child{padding-top:0}
.cr-step-num{
  flex-shrink:0;
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(135deg,#0b4a8f 0%,#073a70 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Lato',Arial,sans-serif;
  font-size:14px;
  font-weight:800;
  box-shadow:0 2px 6px rgba(11,74,143,.2);
}
.cr-steps li > div{flex:1}
.cr-steps strong{
  display:block;
  color:#0a2540;
  font-size:14px;
  margin-bottom:4px;
  font-family:'Lato','Poppins',Arial,sans-serif;
  font-weight:700;
}
.cr-steps p{
  margin:0;
  font-size:13.5px;
  color:#52606d;
  line-height:1.6;
  text-align:left;
}

/* ---------- Empty cart state ---------- */
.cr-empty{
  text-align:center;
  padding:50px 28px !important;
}
.cr-empty-icon{
  font-size:56px;
  color:#cbd5e1;
  display:block;
  margin-bottom:18px;
}
.cr-empty h2{
  border:none !important;
  padding:0 !important;
  margin:0 0 12px !important;
  display:block !important;
  font-size:22px !important;
  color:#0a2540;
}
.cr-empty > p{
  color:#52606d;
  margin:0 auto 24px;
  text-align:center;
  max-width:520px;
  font-size:14px;
  line-height:1.7;
}
.cr-empty strong{color:#0a2540}
.cr-empty-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.cr-empty-actions .cr-btn-outline{margin-right:0}

/* ---------- Mobile responsive ---------- */
@media (max-width:767px){
  .cr-section{padding:20px 18px}
  
  /* Stack table as cards on mobile */
  .cr-table,
  .cr-table thead,
  .cr-table tbody,
  .cr-table tr,
  .cr-table td{display:block; width:100%}
  .cr-table thead{display:none}
  .cr-table tbody tr{
    border:1px solid #e5e9f0;
    border-radius:8px;
    margin-bottom:12px;
    overflow:hidden;
    background:#fff;
  }
  .cr-table tbody td{
    border-bottom:1px solid #eef2f7;
    padding:10px 14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    min-height:auto;
  }
  .cr-table tbody td:last-child{border-bottom:none}
  .cr-table tbody td::before{
    content:attr(data-label);
    font-weight:700;
    color:#0a2540;
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:.04em;
    flex-shrink:0;
  }
  .cr-col-remove{justify-content:space-between !important}
  .cr-col-name{display:block !important}
  .cr-col-name::before{
    display:block;
    margin-bottom:8px;
  }
  .cr-product{width:100%}
  
  /* Actions stack */
  .cr-actions{flex-direction:column}
  .cr-actions .cr-btn-outline,
  .cr-actions .cr-btn-update,
  .cr-actions .cr-btn-proceed{
    width:100%;
    margin-right:0;
  }
  
  .cr-head{flex-direction:column; align-items:flex-start}
}



/* ============================================================================
   END
   ============================================================================ */

/* =============================================================================
   GLOBAL FONT SIZE +15%
   ============================================================================= */
html{ font-size: 110%; }


