/* ============================================================
   ANURAG ENTERPRISES — style.css  (single merged stylesheet)
   Primary: #1D5E7F | Body: Instrument Sans | Heading: Lato
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --primary:      #1D5E7F;
  --primary-dark: #164f6b;
  --primary-mid:  #216d91;
  --bg-gray:      #F7F8F9;
  --light-bg:     #f0f4f7;
  --body-txt:     #888885;
  --dark-txt:     #1C1917;
  --border:       #e2e8f0;
  --shadow:       0 4px 20px rgba(29,94,127,0.10);
  --shadow-lg:    0 8px 36px rgba(29,94,127,0.18);
  --radius:       16px;
  --radius-sm:    10px;
  /* targeted transition — no "all" to prevent layout jank */
  --tr: background-color 0.15s ease, color 0.15s ease,
        border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Instrument Sans'; font-size: 16px; color: var(--body-txt); background: #fff; overflow-x: hidden; line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: 'Lato'; color: var(--dark-txt); line-height: 1.22; }
a     { text-decoration: none; transition: var(--tr); }
img   { max-width: 100%; height: auto; display: block; }
ul    { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.label-sm {
  display: block;
  font-size: 16px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-top: 4px; }

/* Scroll reveal */
.rv   { opacity: 0; transform: translateY(28px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.rv-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv-r { opacity: 0; transform: translateX(28px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.vis, .rv-l.vis, .rv-r.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s !important; }
.d2 { transition-delay: 0.20s !important; }
.d3 { transition-delay: 0.30s !important; }
.d4 { transition-delay: 0.40s !important; }
.d5 { transition-delay: 0.50s !important; }

/* ============================================================
   4. TOP BAR
   ============================================================ */
   .topbar {
    background: var(--primary);
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 0;
    z-index: 9999999;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: #fff; }
.tb-item { display: flex; align-items: center; gap: 8px; }
.tb-item i { font-size: 16px; }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.3); margin: 0 6px; }
.top-img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
img.footer-img {
    margin-top: 6px;
}
/* ============================================================
   5. NAVBAR
   ============================================================ */
.site-nav {
  background: #fff; padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s;
  top: 47px;
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(29,94,127,0.15); }
.site-nav .navbar-brand img { height: 62px; width: auto; }
.site-nav .navbar-nav .nav-link {
  font-family: 'Instrument Sans';
  font-size: 16px; color: var(--body-txt)!important;
  padding: 26px 26px !important;
  transition: color 0.15s ease;
}
.site-nav .navbar-nav .nav-link.active,
.site-nav .navbar-nav .nav-link:hover { color: var(--primary) !important;font-weight: 600; }

/* ============================================================
   6. MEGA MENU
   ============================================================ */
.nav-item.has-mega { position: static; }

.nav-link.has-arrow { display: inline-flex; align-items: center; }
.nav-link.has-arrow .nav-chevron {
  display: inline-block; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; flex-shrink: 0;
  transition: transform 0.2s ease; vertical-align: middle; margin-top: -2px;
}
.nav-item.has-mega.open > .nav-link .nav-chevron,
.nav-item.has-mega:hover > .nav-link .nav-chevron { transform: rotate(-135deg); margin-top: 3px; }

.mega-panel {
  display: none; position: fixed; left: 0; right: 0; top: auto;
  background: #fff; border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(29,94,127,0.14);
  z-index: 999; padding: 32px 0 28px;
  animation: megaFadeIn 0.18s ease both;
}
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
@media (min-width: 992px) {
  .nav-item.has-mega:hover .mega-panel,
  .nav-item.has-mega.open  .mega-panel { display: block; }
}

.mega-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.mega-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

.mega-cat-grid,
.mega-svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }

.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px; border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.mega-item:hover { background: #eef5fb; border-color: #c8dff0; transform: translateX(3px); }

.mega-item-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--bg-gray); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background-color 0.15s ease;
}
.mega-item-icon img { width: 22px; height: 22px; object-fit: contain; }
.mega-item:hover .mega-item-icon { background: #d3eaf7; }

.mega-item-text { display: flex; flex-direction: column; gap: 1px; }
.mega-item-name { font-size: 13.5px; font-weight: 600; color: var(--dark-txt); line-height: 1.3; transition: color 0.15s ease; }
.mega-item:hover .mega-item-name { color: var(--primary); }
.mega-item-sub { font-size: 11.5px; color: var(--body-txt); line-height: 1.3; }

.mega-view-all { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 600; color: var(--primary); margin-top: 16px; transition: color 0.15s ease; }
.mega-view-all:hover { color: var(--primary-dark); }

.mega-featured {
  background: var(--primary); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 8px; justify-content: center;
  height: 100%;
}
.mega-featured-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.mega-featured-title { font-family: 'Lato',sans-serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; }
.mega-featured-sub { font-size: 12.5px; color: rgba(255,255,255,0.80); line-height: 1.5; }
.mega-featured-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--primary); font-size: 12.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px; margin-top: 6px; align-self: flex-start;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mega-featured-btn:hover { background: var(--bg-gray); color: var(--primary-dark); }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn-filled, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 34px; border-radius: var(--radius-sm);
  font-family: 'Instrument Sans'; font-size: 14.5px; font-weight: 600;
  border: 2px solid var(--primary); transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.btn-filled { background: var(--primary); color: #fff !important; width:220px; }
.btn-filled:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary) !important; width:220px;}
.btn-outline:hover { background: var(--primary); color: #fff !important; transform: translateY(-2px); }

.btn-readmore {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff !important;
  padding: 16px 48px; border-radius: 40px;
  font-family: 'Instrument Sans'; font-size: 16px; font-weight: 600;
  margin-top: 12px; align-self: flex-start; min-width: 280px; transition: var(--tr);
}
.btn-readmore:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-view-all {
  display: inline-flex; align-items: center;
  background: var(--primary); color: #fff !important;
  padding: 14px 36px; border-radius: 40px;
  font-family: 'Instrument Sans'; font-size: 14.5px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0; transition: var(--tr);
}
.btn-view-all:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-pc-white, .btn-pc-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 42px; border-radius: 12px;
  font-family: 'Instrument Sans'; font-size: 16px; font-weight: 600;
  transition: var(--tr); border: 2px solid #fff;
}
.btn-pc-white  { background: #fff; color: var(--primary) !important; }
.btn-pc-white:hover  { background: transparent; color: #fff !important; }
.btn-pc-outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.55); }
.btn-pc-outline:hover { background: #fff; color: var(--primary) !important; border-color: #fff; }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  background: var(--bg-gray);
  background-image: radial-gradient(circle, rgba(29,94,127,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 80px 0 60px; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-title { font-size: 55px; font-weight: 900; line-height: 1.12; color: var(--dark-txt); margin-bottom: 28px; }
.hero-title .teal { color: var(--primary); }
.hero-desc { font-size: 16px; color: var(--body-txt); line-height: 1.78; margin-bottom: 42px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-col { display: flex; align-items: center; justify-content: center; }
.hero-banner-img { width: 100%; max-width: 680px; object-fit: contain; animation: floatY 5s ease-in-out infinite; mix-blend-mode: multiply; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-in-1   { animation: fadeUp    0.75s 0.05s both; }
.hero-in-2   { animation: fadeUp    0.75s 0.18s both; }
.hero-in-3   { animation: fadeUp    0.75s 0.32s both; }
.hero-in-img { animation: fadeRight 0.80s 0.20s both; }
@keyframes fadeUp    { from { opacity:0; transform: translateY(28px);  } to { opacity:1; transform:none; } }
@keyframes fadeRight { from { opacity:0; transform: translateX(36px); } to { opacity:1; transform:none; } }

/* ============================================================
   9. CATEGORIES (homepage grid)
   ============================================================ */
.categories { background: #fff; padding: 90px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.cat-card {
  background: #fff; border: 1.5px solid #e8edf2; border-radius: var(--radius);
  padding: 28px 24px 17px; cursor: pointer;

  will-change: background-color, transform;
}
.cat-card:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow); }

.cat-icon-wrap {
  width: 90px; height: 90px; background: #edf2f7; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background-color 0.15s ease;
}
.cat-icon-wrap img { width: 45px; height: 45px; object-fit: contain; }
.cat-card:hover .cat-icon-wrap { background: r#fff; }

.cat-name { font-family: 'Lato',sans-serif; font-size: 17px; font-weight: 700; color: var(--dark-txt); margin-bottom: 5px; transition: color 0.15s ease; }
.cat-sub  { font-size: 16px; color: #718096; line-height: 1.5; transition: color 0.15s ease; }
.cat-card:hover .cat-name { color: #fff; }
.cat-card:hover .cat-sub  { color: rgba(255,255,255,0.75); }

/* ============================================================
   10. ABOUT (homepage split)
   ============================================================ */
.about { background: var(--bg-gray); padding: 20px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;}
.about-content-col { padding: 80px 70px 80px 60px; display: flex; flex-direction: column; justify-content: center; background: var(--bg-gray); }
.about-content-col h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-bottom: 28px; line-height: 1.18; }
.about-para { font-size: 16px; color: var(--dark-txt); line-height: 1.82; margin-bottom: 18px; }
.about-para .hl { color: var(--primary); font-weight: 600; }

/* ============================================================
   11. SERVICES
   ============================================================ */
.services { background: var(--primary); padding: 96px 0 104px; overflow: hidden; }
.services .sec-head { margin-bottom: 86px; }
.services .sec-head .label-sm { color: rgba(255,255,255,0.76); letter-spacing: 3px; }
.services .sec-head h2 { font-size: 55px; font-weight: 900; color: #fff; margin-top: 6px; }

.svc-row { display: grid; gap: 24px; align-items: stretch; }
.svc-row-1 { grid-template-columns: repeat(4,minmax(0,1fr)); margin-bottom: 56px; }
.svc-row-2 { grid-template-columns: repeat(3,minmax(0,1fr)); max-width: 74%; margin: 0 auto; }

.svc-card {
  min-height: 194px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
  padding: 60px 28px 30px; text-align: center; position: relative;

  will-change: background-color, transform;
  box-shadow: 0 16px 30px rgba(19,59,80,0.09); backdrop-filter: blur(3px);
}
.svc-card:hover { background: #fff; border-color: rgba(255,255,255,0.85);  box-shadow: 0 24px 45px rgba(20,63,84,0.20); }



.svc-icon-wrap {
  width: 86px; height: 86px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; position: absolute; top: 0; left: 50%;
  transform: translate(-50%,-48%); z-index: 1;
  box-shadow: 0 10px 22px rgba(9,30,45,0.14);
}
.svc-icon-wrap img { width: 44px; height: 44px; object-fit: contain; }
.svc-card h3 { font-size: 20px; font-weight: 700; color: #ffffff; margin-bottom: 14px; line-height: 1.25; transition: color 0.15s ease; }
.svc-card p  { font-size: 16px; color: #ffffff; line-height: 1.45; max-width: 250px; margin: 0 auto; transition: color 0.15s ease; }
.svc-card:hover h3 { color: #1C1917; font-weight: 800; }
.svc-card:hover p  { color: #888885; }
/* ============================================================
   12. WHY CHOOSE US (homepage)
   ============================================================ */
.why { background: #fff; padding: 90px 0; }
.why-header { margin-bottom: 50px; }
.why-header h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); line-height: 1.15; margin-top: 6px; }
.why .col-lg-7{width:53%}
.why .col-lg-5{width:47%}
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px; border-radius: 12px; border-left: 4px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  margin-bottom: 20px; cursor: pointer;
}
.why-item.active, .why-item:hover { background: #edf4fb; border-left-color: var(--primary); }
.why-num { font-family: 'Lato',sans-serif; font-size: 16px; font-weight: 700; color: var(--primary); min-width: 28px; padding-top: 2px; }
.why-content h4 { font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 6px; }
.why-content p  { font-size: 16px; color: var(--body-txt); line-height: 1.65; margin: 0; }

.why-stats-card { background: var(--primary); border-radius: 20px; padding: 60px 40px; color: #fff; height: 100%; }
.trusted-heading { font-family: 'Lato',sans-serif; font-size: 32px; font-weight: 900; line-height: 1.3; margin-bottom: 30px; }
.trusted-heading span { font-weight: 400; font-size: 22px; opacity: 0.9; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.stat-box { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 22px 20px; }
.stat-box .s-num { font-family: 'Lato',sans-serif; font-size: 38px; font-weight: 600; line-height: 1; color: #fff; }
.stat-box .s-lbl { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 5px; }

.ind-section-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.ind-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ind-pill {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 7px 16px; font-size: 16px; font-weight: 600; color: #fff;
  transition: background-color 0.15s ease;
}
.ind-pill:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   13. HOW IT WORKS
   ============================================================ */
.how { background: var(--light-bg); padding: 90px 0; }
.how .sec-head { margin-bottom: 60px; }
.how .sec-head h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-top: 6px; margin-bottom: 14px; }
.how .sec-head p  { font-size: 16px; color: var(--body-txt); max-width: 560px; margin: 0 auto; }

.steps-row {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
  position: relative; align-items: start;
}
.steps-row::before {
  content: ''; position: absolute; top: 80px; left: 8%; right: 8%;
  height: 1.5px; background: rgba(29,94,127,0.18); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; cursor: pointer; }
.step-icon-card {
  width: 100%; aspect-ratio: 1; max-width: 160px; background: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: visible;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.step-item:hover .step-icon-card { background: var(--primary); box-shadow: 0 6px 24px rgba(29,94,127,0.15); transform: translateY(-3px); }
.step-icon-card img { width: 60%; height: 60%; object-fit: contain; }
.step-badge {
  position: absolute; top: -10px; right: -10px;
  width: 28px; height: 28px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Lato',sans-serif; font-size: 16px; font-weight: 700;
  z-index: 2; box-shadow: 0 2px 8px rgba(29,94,127,0.35);
}
.step-item h4 { font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3; }
.step-item p  { font-size: 16px; color: var(--body-txt); line-height: 1.6; }

/* ============================================================
   14. OUR WORK
   ============================================================ */
.work { background: #fff; padding: 80px 0; }
.work-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.work-top h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin: 0 0 8px; }
.work-top p  { font-size: 16px; color: var(--body-txt); margin: 0; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.work-item { cursor: pointer; overflow: hidden; }
.work-item img { width: 100%; border-radius: var(--radius); height: 320px; object-fit: cover; transition: transform 0.35s ease; }
.work-item:hover img { transform: scale(1.02); }
.work-item-title { font-family: 'Lato',sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-top: 14px; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--light-bg); padding: 90px 0; overflow: hidden; }
.testi-header { margin-bottom: 50px; text-align: left; }
.testi-header h2 { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-top: 6px; margin-bottom: 14px; }
.testi-header p  { font-size: 16px; color: var(--body-txt); max-width: 620px; text-align: left; }

.testi-carousel .owl-stage-outer { padding: 18px 0 26px; overflow: visible; }
.testi-carousel .owl-stage { display: flex; align-items: center; }
.testi-carousel .owl-item {  transition: transform 0.3s ease, opacity 0.3s ease; }
.testi-carousel .owl-item .testi-card { background: #dfe8ee; border-radius: 0px; padding: 32px 28px; transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; height:300px;}
.testi-carousel .owl-item.center { opacity: 1; }
.testi-carousel .owl-item.center .testi-card { background: var(--primary); box-shadow: 0 22px 42px rgba(29,94,127,0.22); }
.testi-carousel .owl-item.center .testi-text    { color: rgba(255,255,255,0.88); }
.testi-carousel .owl-item.center .testi-divider { background: rgba(255,255,255,0.22); }
.testi-carousel .owl-item.center .testi-name    { color: #fff; }
.testi-carousel .owl-item.center .testi-pos     { color: rgba(255,255,255,0.72); }
.testi-carousel .owl-item.center .testi-stars   { color: #fff; }
.testi-carousel .owl-item.center .testi-avatar  { background: rgba(255,255,255,0.18); color: #fff; }

.testi-stars  { font-size: 18px; color: var(--primary); letter-spacing: 3px; margin-bottom: 20px; }
.testi-text   { font-size: 14px; color: var(--dark-txt); line-height: 1.75; margin-bottom: 24px; }
.testi-divider { height: 1px; background: rgba(0,0,0,0.1); margin-bottom: 20px; }
.testi-author-row { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; min-width: 46px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lato',sans-serif; font-size: 18px; font-weight: 700; }
.testi-name { font-size: 16px; font-weight: 700; color: var(--dark-txt); margin: 0; }
.testi-pos  { font-size: 14px; color: var(--body-txt); }

.owl-carousel .owl-nav { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.owl-carousel .owl-nav button {
  margin: 0 6px !important; width: 46px; height: 46px;
  border: 1.5px solid var(--primary) !important; border-radius: 50% !important;
  background: #fff !important; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--dark-txt) !important; transition: var(--tr);
}
.owl-carousel .owl-nav button:hover { border-color: var(--primary) !important; color: var(--primary) !important; background: rgba(29,94,127,0.05) !important; }
.owl-dots { display: none; }

/* ============================================================
   16. PARTNER CTA
   ============================================================ */
.partner-cta-section { background: #fff; padding: 0px 0; }
.partner-cta-card { background: var(--primary); border-radius: 28px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }

.pc-label { font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.partner-cta-card h2 { font-size: 55px; font-weight: 600; color: #fff; margin-bottom: 18px; line-height: 1.2; }
.partner-cta-card > p { font-size: 15.5px; color: #fff;  margin-left: auto; margin-right: auto; font-weight: 500;}
.pc-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;margin-top:50px; }

/* ============================================================
   17. CONTACT
   ============================================================ */
.contact { background: #fff; padding: 90px 0; }
.contact-title { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-bottom: 36px; line-height: 1.15; }
.office-title  { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 22px; }
.contact-item  { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.ci-icon { width: 42px; height: 42px; min-width: 42px; background: #e8f0f6; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ci-icon img { width: 20px; height: 20px; object-fit: contain; }
.ci-text { font-size: 16px; color: var(--dark-txt); line-height: 1.6; padding-top: 10px; }
a.ci-text { color: var(--dark-txt); }
a.ci-text:hover { color: var(--primary); }
.office-sep { border-top: 1px solid #dde4ea; margin: 28px 0; }

.quote-card { background: #fff; border: 1px solid #e4eaef; border-radius: 20px; padding: 44px 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.10); }
.quote-title { font-size: 32px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; }
.quote-sub   { font-size: 16px; color: var(--body-txt); margin-bottom: 30px; }
.form-row-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fgroup { margin-bottom: 20px; }
.flabel { display: block; font-size: 15px; font-weight: 500; color: var(--dark-txt); margin-bottom: 8px; }
.finput {
  width: 100%; padding: 10px 16px; background: var(--bg-gray);
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  font-size: 14px; font-family: 'Instrument Sans'; color: var(--dark-txt);
  outline: none; transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.finput:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(29,94,127,0.08); }
.fselect { appearance: auto; cursor: pointer; }
textarea.finput { resize: vertical; }
.btn-enquiry {
  width: 100%; padding: 17px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Instrument Sans'; font-size: 16px; font-weight: 600;
  cursor: pointer; margin-top: 8px; letter-spacing: 0.3px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.btn-enquiry:hover { background: var(--primary-dark); transform: translateY(-2px); }
.form-ok { display: none; background: #e8f5e9; color: #2e7d32; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; font-weight: 600; margin-top: 14px; }

/* ============================================================
   18. INDUSTRIES
   ============================================================ */
.industries { background: var(--primary); padding: 90px 0 80px; }
.ind-header { text-align: center; margin-bottom: 56px; }
.ind-label { display: block; font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.ind-title { font-size: 55px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.ind-sub   { font-size: 16px; color: #fff;  margin: 0 auto; }
.ind-grid  { display: grid; grid-template-columns: repeat(7,1fr); gap: 14px; }
.ind-white-card { background: #fff; border-radius: var(--radius); padding: 24px 16px 22px; text-align: center; transition: transform 0.15s ease, box-shadow 0.15s ease;height: 220px; }
.ind-white-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.ind-icon-box { width: 133px; height: 111px; background: #d8ecf5; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ind-icon-box img { width: 64px; height: 64px; object-fit: contain; }
.ind-card-label { font-size: 13px; font-weight: 500; color: var(--dark-txt); line-height: 1.45; margin: 0; }

/* ============================================================
   19. FAQ
   ============================================================ */
.faq { background: #fff; padding: 80px 0; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-title { font-size: 45px; font-weight: 900; color: var(--dark-txt); margin-top: 6px; }
.faq-list  { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item  { border-radius: 14px; overflow: hidden; }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; background: #e9eef3; border: none; outline: none;
  font-family: 'Instrument Sans'; font-size: 20px; font-weight: 600;
  color: var(--primary); text-align: left; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.faq-btn:not(.collapsed) { background: var(--primary); color: #fff; border-radius: 14px 14px 0 0; }
.faq-icon { font-size: 16px; flex-shrink: 0; margin-left: 12px; }
.faq-body { background: var(--primary); border-radius: 0 0 14px 14px; }
.faq-body p { padding: 5px 28px 26px; font-size: 16px; font-weight: 600; color: #fff; line-height: 1.7; margin: 0; text-transform: capitalize; }

/* ============================================================
   20. OUR CLIENTS
   ============================================================ */
.clients { background: #f4f6f8; padding: 80px 0; }
.clients-title { font-size: 55px; font-weight: 900; color: var(--dark-txt); margin-bottom: 44px; text-align: center; }
.clients-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 40px; }
.cl-item { background: transparent; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.cl-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(29,94,127,0.12); }
.cl-item img { width: 100%; height: auto; object-fit: contain; border-radius: 4px; }
.clients-more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600; color: var(--dark-txt); transition: color 0.15s ease; }
.clients-more-link:hover { color: var(--primary); }

/* ============================================================
   21. FOOTER SEO BAND
   ============================================================ */
.footer-seo { background: var(--light-bg); padding: 60px 0; }
.fseo-block { padding: 24px 0; border-bottom: 1px solid #dce3ea; }
.fseo-block:last-child { border-bottom: none; }
.fseo-title { font-family: 'Lato',sans-serif; font-size: 24px; font-weight: 700; color: var(--dark-txt); margin-bottom: 10px; }
.fseo-text  { font-size: 16px; color: var(--body-txt); line-height: 1.8; }
.fseo-link  { color: var(--primary); font-weight: 600; }
.fseo-link:hover { text-decoration: underline; }

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer { background: #fff; position: relative; overflow: hidden; }
.footer-body { padding: 70px 0 50px; position: relative; isolation: isolate; }
.footer-body::after {
  content: ''; position: absolute; top: 18px; right: 0;
  width: min(32vw,380px); height: calc(100% - 18px);
  background: url('../images/footer-right-bg.svg') right center / contain no-repeat;
  opacity: 0.95; pointer-events: none; user-select: none; z-index: 0;
}
.footer-brand, .footer-body .row > div { position: relative; z-index: 1; }
.footer-main-logo { width: 100%; margin-bottom: 28px; }
.footer-social { display: flex; gap: 18px; }
.fsoc { font-size: 26px; color: var(--primary); transition: color 0.15s ease, transform 0.15s ease; }
.fsoc:hover { color: var(--primary-dark); transform: translateY(-2px); }
.footer-col-title { font-family: 'Lato',sans-serif; font-size: 24px; font-weight: 500; color: var(--dark-txt); margin-bottom: 20px; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a { font-size: 16px; color: var(--dark-txt); transition: color 0.15s ease; }
.footer-nav-list a:hover, .footer-nav-list a.active-link { color: var(--primary); font-weight: 600; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--dark-txt); margin-bottom: 14px; }
.footer-contact-item i { color: var(--dark-txt); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--dark-txt); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-cats-bar { border-top: 1px solid var(--border); padding: 22px 0; background: #fff; }
.footer-cats-row { display: flex; flex-wrap: wrap; gap: 0; align-items: center; }
.fcat-tag { font-size: 16px; color: var(--primary); padding: 4px 16px; border-right: 1px solid #cbd5e0; transition: color 0.15s ease; white-space: nowrap; }
.fcat-tag:last-child { border-right: none; }
.fcat-tag:hover { color: var(--primary-dark); }
.footer-copyright { background: var(--primary); padding: 18px 0; font-size: 14px; color: #fff; }

/* ============================================================
   23. SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 26px; right: 26px; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: background-color 0.15s ease, transform 0.15s ease, opacity 0.2s ease, visibility 0.2s ease;
  z-index: 999; box-shadow: 0 4px 18px rgba(29,94,127,0.40);
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   24. WHATSAPP STICKY BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed; bottom: 88px; right: 26px; width: 50px; height: 50px;
  background: #25D366; color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  cursor: pointer; z-index: 998; text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.50);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.whatsapp-btn:hover { background: #1ebe5d; color: #fff; transform: translateY(-3px) scale(1.07); box-shadow: 0 8px 28px rgba(37,211,102,0.60); }
.whatsapp-btn::before {
  content: 'Chat with us'; position: absolute; right: calc(100% + 12px);
  background: #1C1917; color: #fff; font-family: 'Instrument Sans',sans-serif;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  padding: 6px 12px; border-radius: 6px; opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
}
.whatsapp-btn:hover::before { opacity: 1; }

/* ============================================================
   25. BREADCRUMB (shared across About & Category pages)
   ============================================================ */
.about-breadcrumb { background: var(--bg-gray); padding: 20px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--body-txt); }
.breadcrumb-list a { color: var(--body-txt); transition: color 0.15s ease; }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list i { font-size: 12px; color: var(--body-txt); }
.breadcrumb-list strong { color: var(--primary); font-weight: 600; }

/* ============================================================
   26. ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  background: url('../images/about-bg.svg') right center / cover no-repeat;
  
  padding: 100px 0 90px; overflow: hidden; text-align: center;
}
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-hero-watermark { width: 600px;
    height: auto;
    opacity: 0.12;
    filter: grayscale(1) invert(1);
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translateY(-39%); display:none; }
.about-hero .container { position: relative; z-index: 2; }
.about-hero-title { font-family: 'Lato',sans-serif; font-size: 64px; font-weight: 900; color: #fff; line-height: 1.12; margin-bottom: 20px; }
.about-hero-sub { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; line-height: 1.65; }

.btn-about-explore {
  display: inline-block; background: #fff; color: var(--primary);
  font-family: 'Instrument Sans',sans-serif; font-size: 16px; font-weight: 600;
  padding: 16px 40px; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: var(--tr);
}
.btn-about-explore:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.who-we-are .col-lg-5.rv-l.vis {
    margin-top: 0px;
}
.about-stats { background: #F7F8F9; padding: 0px 0;  }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.astat-item { text-align: center; padding: 24px 20px; border-right: 1px solid var(--border); }
.astat-item:last-child { border-right: none; }
.astat-num   { font-family: 'Lato',sans-serif; font-size: 64px; font-weight: 600; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.astat-label { font-size: 16px; color: var(--dark-txt); margin-bottom: 4px; }
.astat-sub   { font-size: 14px; color: var(--body-txt); margin: 0; }

.who-we-are { padding: 100px 0; background: #fff; }
.who-title { font-family: 'Lato',sans-serif; font-size: 60px; font-weight: 900; color: var(--dark-txt); margin-bottom: 28px; margin-top: 10px; line-height: 1.15; }
.who-para  { font-size: 18px; color: var(--body-txt); line-height: 1.8; margin-bottom: 20px; }
.btn-work-with {
  display: inline-block; background: var(--primary); color: #fff;
  font-family: 'Instrument Sans',sans-serif; font-size: 16px; font-weight: 600;
  padding: 16px 40px; border-radius: 50px; margin-top: 10px; transition: var(--tr);
      text-align: center;
    min-width: 240px;
}
.btn-work-with:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,94,127,0.3); }

/* Vision / Mission / Goal cards */
.vmg-stack { display: flex; flex-direction: column; gap: 20px; }
.vmg-card { border-radius: var(--radius); padding: 22px 25px; cursor: default; }
.vmg-light { background: #fff; border: 1px solid var(--border);  box-shadow: var(--shadow); }
.vmg-light:hover { background: var(--primary); color: #fff; border-color: var(--primary);  box-shadow: var(--shadow-lg); }
.vmg-light:hover .vmg-heading   { color: #fff; }
.vmg-light:hover .vmg-body      { color: #fff; }
.vmg-light:hover .vmg-tag       { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.vmg-card-inner { display: flex; align-items: flex-start; gap: 20px; }
.vmg-icon-wrap { width: 52px; height: 52px; min-width: 52px; background: var(--bg-gray); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;  }
.vmg-icon-light { background: rgba(255,255,255,0.15); }
.vmg-text { flex: 1; }
.vmg-head-row { display: block; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.vmg-heading { font-family: 'Lato',sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-txt); margin: 0;  }
.vmg-heading-white { color: #fff; }
.vmg-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--body-txt); background: var(--bg-gray); padding: 3px 10px; border-radius: 20px; transition: background-color 0.15s ease, color 0.15s ease; }
.vmg-tag-dark { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.vmg-body { font-size: 16px; color: var(--body-txt); line-height: 1.75; margin: 0; }
.vmg-body-white { color: rgba(255,255,255,0.88); }

/* Why Choose Us — About page */
.about-why { background: var(--bg-gray); padding: 100px 0; }
.about-why .sec-head h2 { font-size: 52px; }
.why-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 30px;
  will-change: background-color, transform; cursor: default;
}
.why-feature-card:hover { background: var(--primary); border-color: var(--primary);  box-shadow: var(--shadow-lg); }
.why-feature-card:hover h3     { color: #fff; }
.why-feature-card:hover p      { color: rgba(255,255,255,0.85); }
.why-feature-card--dark { background: var(--primary); border-color: var(--primary); }
.why-feature-card--dark h3 { color: #fff; }
.why-feature-card--dark p  { color: rgba(255,255,255,0.85); }
.why-feature-card--dark:hover { background: var(--primary-mid); border-color: var(--primary-mid); }
.wfc-icon { width: 60px; height: 60px; background: var(--bg-gray); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.wfc-icon-light { background: rgba(255,255,255,0.15); }
.why-feature-card h3 { font-family: 'Lato',sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 12px;  }
.why-feature-card p  { font-size: 16px; color: var(--body-txt); line-height: 1.75; margin: 0;  }

/* ============================================================
   27. CATEGORY / PRODUCT PAGE
   ============================================================ */
.cat-page-header { background: #fff; padding: 60px 0;  }
.cat-page-header .label-sm { margin-bottom: 8px; }
.cat-page-title { font-family: 'Lato',sans-serif; font-size: 52px; font-weight: 900; color: var(--dark-txt); line-height: 1.1; margin: 0; }

.cat-products-section { background: #fff; padding: 48px 0 80px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  display: inline-flex; align-items: center;
  padding: 12px 30px; border-radius: 50px; border: 1px solid var(--primary);
  background: #fff; font-family: 'Instrument Sans',sans-serif;     font-size: 20px;
    font-weight: 400;
    color: var(--primary); cursor: pointer; white-space: nowrap; line-height: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.filter-btn:hover  { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prod-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  will-change: transform;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c5d9e8; }
.prod-card.hidden { display: none; }
.prod-card.fade-in { animation: prodFadeIn 0.28s ease both; }
@keyframes prodFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

.prod-img { width: 100%; height: 257px; }
.prod-img--blue    { background: #dce8f5; }
.prod-img--pink    { background: #fce4e4; }
.prod-img--green   { background: #e0f2e9; }
.prod-img--sky     { background: #ddf0f8; }
.prod-img--yellow  { background: #fef6d6; }
.prod-img--lavender{ background: #ece8f8; }
.prod-img--purple  { background: #e8e4f4; }
.prod-img--peach   { background: #fde8de; }
.prod-img--mint    { background: #d8f5ee; }

.prod-info { padding: 18px 20px 22px; }
.prod-tag  { display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary); background: #eef5fb; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; letter-spacing: 0.3px; }
.prod-name { font-family: 'Lato',sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3; }
.prod-desc { font-size: 16px; color: var(--body-txt); line-height: 1.7; margin: 0; }

.products-empty { text-align: center; padding: 80px 20px; color: var(--body-txt); }
.products-empty i { font-size: 48px; color: var(--border); display: block; margin-bottom: 16px; }
.products-empty p { font-size: 16px; }

/* Why Order From Us */
.why-order-section { background: var(--bg-gray); padding: 90px 0; }
.why-order-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.wo-card {
  background: #1d5e7f12; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; cursor: default;

  will-change: background-color, transform;
}
.wo-card:hover { background: var(--primary); border-color: var(--primary);  box-shadow: var(--shadow-lg); }
.wo-card:hover h3, .wo-card:hover p { color:#fff; }
.wo-card:hover .wo-icon { background: rgba(255,255,255,0.15); }
.wo-card--dark { background: var(--primary); border-color: var(--primary); }
.wo-card--dark h3, .wo-card--dark p { color: #fff; }
.wo-card--dark:hover { background: var(--primary-mid); border-color: var(--primary-mid); }
.wo-icon { width: 72px; height: 72px; background: var(--bg-gray); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;  }
.wo-icon--light { background: rgba(255,255,255,0.15); }
.wo-card h3 { font-family: 'Lato',sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 12px; }
.wo-card p  { font-size: 16px; color: var(--body-txt); line-height: 1.7; margin: 0;  }

/* ============================================================
   28. RESPONSIVE — 1199px
   ============================================================ */
@media (max-width: 1199px) {
    .why .col-lg-7{width:auto}
.why .col-lg-5{width:auto}
  .site-nav .navbar-nav .nav-link {
    font-family: 'Instrument Sans';
    font-size: 14px;
    color: var(--body-txt) !important;
    padding: 26px 10px !important;
    
}
  .cat-grid       { grid-template-columns: repeat(3,1fr); }
  .ind-grid       { grid-template-columns: repeat(4,1fr); }
  .clients-grid   { grid-template-columns: repeat(4,1fr); }
  .svc-row-1      { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .svc-row-2      { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 100%; }
  .footer-body::after { width: min(40vw,280px); top: 28px; height: calc(100% - 28px); }
  .footer-main-logo   { max-height: 90px; }
  .fsoc               { font-size: 22px; }
  .about-hero-title   { font-size: 52px; }
  .astat-num          { font-size: 52px; }
  .who-title          { font-size: 42px; }
  .about-why .sec-head h2 { font-size: 42px; }
  .cat-page-title     { font-size: 44px; }
  .products-grid      { grid-template-columns: repeat(3,1fr); }
  .why-order-grid     { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   29. RESPONSIVE — 991px
   ============================================================ */
@media (max-width: 991px) {
  .site-nav {
    position: static;
}
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero-title  { font-size: 40px; }
  .hero-img-col { margin-top: 40px; }

  .sec-head h2, .about-content-col h2, .why-header h2, .how .sec-head h2,
  .work-top h2, .testi-header h2, .partner-cta-card h2, .contact-title,
  .ind-title, .faq-title, .clients-title, .services .sec-head h2 { font-size: 36px; }

  .about-inner       { grid-template-columns: 1fr; }
  .about-img-col     { height: 320px; }
  .about-content-col { padding: 50px 30px; }
  .steps-row         { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .steps-row::before { display: none; }
  .why-stats-card    { margin-top: 30px; }
  .work-grid         { gap: 20px; }
  .work-item img     { height: 240px; }
  .partner-cta-card  { padding: 60px 36px; }

  /* Mega mobile */
  .mega-panel { position: static; border-top: none; border-bottom: none; box-shadow: none; padding: 0; background: var(--bg-gray); border-radius: 10px; margin: 4px 0 8px; animation: none; }
  .nav-item.has-mega.open .mega-panel { display: block; }
  .mega-inner { padding: 16px; }
  .mega-section-label { font-size: 10px; margin-bottom: 10px; }
  .mega-cat-grid, .mega-svc-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .mega-item { padding: 9px 10px; gap: 9px; }
  .mega-item-icon { width: 32px; height: 32px; min-width: 32px; }
  .mega-item-icon img { width: 18px; height: 18px; }
  .mega-item-name { font-size: 12.5px; }
  .mega-item-sub  { display: none; }
  .mega-featured  { display: none; }
  .mega-view-all  { margin-top: 10px; font-size: 12px; }

  /* About */
  .about-hero     { padding: 72px 0 64px; }
  .about-hero-title { font-size: 44px; }
  .about-hero-sub   { font-size: 16px; }
  .about-hero-watermark { width: 340px; opacity: 0.08; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .astat-item:nth-child(2) { border-right: none; }
  .astat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .astat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .astat-num  { font-size: 44px; }
  .who-we-are { padding: 72px 0; }
  .who-title  { font-size: 36px; }
  .vmg-stack  { margin-top: 20px; }
  .why-cards-grid { grid-template-columns: repeat(2,1fr); }
  .about-why .sec-head h2 { font-size: 36px; }

  /* Category */
  .cat-page-header  { padding: 32px 0 28px; }
  .cat-page-title   { font-size: 38px; }
  .cat-products-section { padding: 36px 0 60px; }
  .products-grid    { grid-template-columns: repeat(2,1fr); }
  .why-order-section { padding: 70px 0; }
  .wo-card          { padding: 28px 20px; }

  .whatsapp-btn { bottom: 80px; right: 20px; }
}

/* ============================================================
   30. RESPONSIVE — 767px
   ============================================================ */
@media (max-width: 767px) {
    .svc-card{    margin-bottom: 27px;}
  .hero        { padding: 48px 0 40px; }
  .hero-title  { font-size: 32px; }
  .hero-desc   { font-size: 14px; }
  .hero-btns   { flex-direction: column; gap: 12px; }
  .btn-filled, .btn-outline { width: 100%; justify-content: center; }

  .cat-grid    { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .about-content-col { padding: 36px 20px; }
  .btn-readmore { min-width: auto; width: 100%; text-align: center; }

  .services    { padding: 72px 0 80px; }
  .svc-row-1, .svc-row-2 { grid-template-columns: 1fr; max-width: 100%; }
  .services .svc-row-1   { margin-bottom: 27px; }
  .svc-row-1   { margin-bottom: 24px; }

  .steps-row   { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .work-grid   { grid-template-columns: 1fr; }
  .work-item img { height: 220px; }

  .form-row-2  { grid-template-columns: 1fr; gap: 0; }
  .quote-card  { padding: 28px 20px; }
  .contact-title { font-size: 30px; }

  .ind-grid    { grid-template-columns: repeat(3,1fr); }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .partner-cta-card { padding: 48px 22px; }
  .btn-pc-white, .btn-pc-outline { width: 100%; justify-content: center; }

  .faq-btn     { padding: 16px 20px; font-size: 16px; }
  .faq-body p  { padding: 16px 20px 20px; }

  .footer-body { padding: 44px 0 36px; }
  .footer-body::after { width: 180px; opacity: 0.28; bottom: 18px; top: auto; height: 140px; }
  .footer-cats-row { gap: 2px; }
  .fcat-tag    { border-right: none; padding: 3px 10px; font-size: 12px; }
  .testimonials { padding: 72px 0; }
  .testi-carousel .owl-item { opacity: 1; }
  .testi-carousel .owl-item .testi-card,
  .testi-carousel .owl-item.center .testi-card { transform: none; }

  /* About */
  .about-hero  { padding: 56px 0 50px; }
  .about-hero-title  { font-size: 36px; }
  .about-hero-sub    { font-size: 16px; }
  .about-hero-watermark { display: none; }
  .btn-about-explore { width: 100%; text-align: center; max-width: 320px; }
  .about-stats { padding: 44px 0; }
  .about-stats-grid  { grid-template-columns: repeat(2,1fr); }
  .astat-num   { font-size: 40px; }
  .astat-label { font-size: 16px; }
  .who-we-are  { padding: 56px 0; }
  .who-title   { font-size: 32px; }
  .who-para    { font-size: 16px; }
  .btn-work-with { width: 100%; text-align: center; }
  .vmg-card    { padding: 22px 20px; }
  .vmg-card-inner { flex-direction: column; gap: 14px; }
  .vmg-icon-wrap { width: 44px; height: 44px; min-width: 44px; }
  .vmg-heading { font-size: 18px; }
  .vmg-body    { font-size: 14px; }
  .about-why   { padding: 60px 0; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .why-feature-card { padding: 28px 22px; }
  .wfc-icon    { width: 52px; height: 52px; }

  /* Category */
  .cat-page-title { font-size: 32px; }
  .filter-tabs { gap: 8px; }
  .filter-btn  { padding: 8px 16px; font-size: 16px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .prod-img    { height: 130px; }
  .prod-info   { padding: 14px 15px 16px; }
  .prod-name   { font-size: 20px; }
  .prod-desc   { font-size: 16px; }
  .why-order-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .wo-card     { padding: 24px 16px; }
  .wo-icon     { width: 56px; height: 56px; }
  .wo-card h3  { font-size: 16px; }

  .whatsapp-btn { bottom: 76px; right: 16px; width: 46px; height: 46px; font-size: 22px; }
  .whatsapp-btn::before { display: none; }
}

/* ============================================================
   31. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title  { font-size: 28px; }
  .cat-grid    { grid-template-columns: repeat(2,1fr); }
  .ind-grid    { grid-template-columns: repeat(2,1fr); }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .steps-row   { grid-template-columns: 1fr 1fr; }
  .site-nav .navbar-brand img { height: 48px; }
  .about-hero-title { font-size: 30px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .astat-num   { font-size: 36px; }
  .cat-page-title { font-size: 28px; }
  .products-grid  { grid-template-columns: 1fr; }
  .prod-img    { height: 180px; }
  .why-order-grid { grid-template-columns: 1fr; }
  .mega-cat-grid, .mega-svc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CORPORATE STATIONERY SOLUTIONS PAGE
   ============================================================ */

/* ── Hero ── */
.svc-page-hero {
  background: var(--primary);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
  overflow: hidden;
}
.svc-hero-title {
  font-family: 'Lato', sans-serif;
  font-size: 60px; font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 28px;
}
.svc-hero-desc {
  font-size: 20px; color: #fff;
  line-height: 1.75; max-width: 560px;
}
.svc-hero-img-wrap {
  display: flex; align-items: center; justify-content: flex-end;
}
.svc-hero-img {
  width: 100%; max-width: 580px; border-radius: 20px;
  object-fit: cover; height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}

/* ── About this service ── */
.svc-about {
  background: var(--bg-gray);
  padding: 80px 0;
}
.svc-about-label {
  font-size: 16px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 18px; display: block;
}
.svc-about-quote {
  font-family: 'Lato', sans-serif;
  font-size: 35px; font-weight: 900; color: var(--dark-txt);
  line-height: 1.2; margin-bottom: 24px;
  border-left: 5px solid var(--primary); padding-left: 20px;
}
.svc-about-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.svc-about-pill {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 10px 16px; border-radius: 50px;
}
.svc-about-para {
  font-size: 16px; color: var(--body-txt);
  line-height: 1.82; margin-bottom: 18px;
}

/* ── Why Choose ── */
.svc-why { background: #fff; padding: 90px 0; }
.svc-why .sec-head h2 { font-size: 46px; }

.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}
.svc-why-item { text-align: center; }
.svc-why-icon {
  width: 100px; height: 100px;
  background: var(--bg-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.svc-why-icon img { width: 46px; height: 46px; object-fit: contain; }
.svc-why-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.4;
  margin: 0;
  max-width: 267px;
  margin: auto;
}
.footer-legal-links a {
    color: #fff !important;
}
/* ── Products ── */
.svc-products { background: var(--bg-gray); padding: 90px 0; }
.svc-products .sec-head h2 { font-size: 46px; }

.svc-products-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 24px;
}
.svc-products-bottom {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 66.66%; margin: 0 auto;
}
.svc-prod-card h3 {
  font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3;
}
.svc-prod-card {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  color: var(--body-txt);
}
.svc-prod-card:hover {   background: var(--primary); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-prod-card:hover h3{color: #fff;  }


.svc-prod-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.svc-prod-icon img { width: 32px; height: 32px; object-fit: contain; }


.svc-prod-card > p {
  font-size: 16px;  margin-bottom: 16px; line-height: 1.65;
}
.svc-prod-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;
margin-top: 30px;
}
.svc-prod-list li {
  font-size: 16px;  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
  font-weight:500;
}
.svc-prod-list li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--primary); border-radius: 50%; margin-top: 10px;
}

.svc-prod-card:hover .svc-prod-list li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: #fff; border-radius: 50%; margin-top: 10px;
}
/* ── Benefits ── */
.svc-benefits { background: var(--primary); padding: 90px 0; }
.svc-benefits .sec-head .label-sm { color: rgba(255,255,255,0.7); }
.svc-benefits .sec-head h2 { color: #fff; font-size: 46px; }

.svc-benefits-row1 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px;
}
.svc-benefits-row2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 66.66%; margin: 0 auto;
}

.svc-benefit-card {    background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.svc-benefit-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.svc-benefit-icon {
  width: 72px;
  height: 72px;
  min-width: 50px;
  background: #1D5E7F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;}
.svc-benefit-icon img {     width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1); }

.svc-benefit-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-benefit-text p { font-size: 15px;
  color: #F7F8F9;
  line-height: 1.65;
  margin: 0; }

/* ── How It Works (stationery variant) ── */
.svc-how { background: #fff; padding: 90px 0; }
.svc-how .sec-head h2 { font-size: 46px; }
.svc-how .sec-head p  { font-size: 16px; color: var(--body-txt); max-width: 560px; margin: 0 auto; }

.svc-steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative; align-items: start; margin-top: 60px;
}
.svc-steps-row::before {
  content: ''; position: absolute; top: 38px; left: 10%; right: 10%;
  height: 1px; background: rgba(29,94,127,0.15); z-index: 0;
}

.svc-step-item { text-align: center; position: relative; z-index: 1; }
.svc-step-num {
  width: 76px; height: 76px;
  background: var(--bg-gray); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  font-family: 'Lato', sans-serif; font-size: 36px; font-weight: 900;
  color: var(--primary);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.svc-step-item:nth-child(odd) .svc-step-num,
.svc-step-item.active .svc-step-num {
  background: var(--primary); color: #fff;
}
.svc-step-item h4 { font-size: 16px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3; }
.svc-step-item p  { font-size: 16px; color: var(--body-txt); line-height: 1.6; }

/* ── Why It Matters (split banner) ── */
.svc-matters { background: var(--primary); padding: 0; overflow: hidden; min-height: 420px; }
.svc-matters-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.svc-matters-img-col { position: relative; overflow: hidden; }
.svc-matters-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.svc-matters-content {
  padding: 70px 60px; display: flex; flex-direction: column; justify-content: center;
  background: var(--primary);
  background-size: 36px 36px;
}
.svc-matters-label { font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.svc-matters-title {
  font-family: 'Lato', sans-serif; font-size: 55px; font-weight: 900;
  color: #fff; line-height: 1.18; margin-bottom: 24px;
}
.svc-matters-para { font-size: 18px; color: #F7F8F9; line-height: 1.80; margin-bottom: 15px; }

/* ── Industries served (stationery variant) ── */
.svc-industries { background: var(--primary); padding: 90px 0 80px; }
.svc-industries .ind-label { color: rgba(255,255,255,0.65); }
.svc-industries .ind-title { color: #fff; font-size: 46px; }
.svc-industries .ind-sub   { color: rgba(255,255,255,0.75); }

.svc-ind-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  justify-content: center;
    display: flex;
}
.stationary{display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;}
.svc-ind-card { border-radius: var(--radius); padding: 28px 16px 22px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex: 0 1 calc(50% - 0.75rem);
}

.svc-ind-icon {
  width: 111px; height: 111px; background: #DDF5FF;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.svc-ind-icon img { width: 64px; height: 64px; object-fit: contain; }
.svc-ind-name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.4; margin: 0; }

/* ============================================================
   RESPONSIVE — STATIONERY PAGE  991px
   ============================================================ */
@media (max-width: 1199px) {
  .svc-hero-title { font-size: 48px; }
  .svc-why-grid   { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
  .svc-ind-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .svc-page-hero    { padding: 60px 0; }
  .svc-hero-title   { font-size: 38px; }
  .svc-hero-img-wrap { margin-top: 36px; justify-content: center; }
  .svc-hero-img     { height: 300px; max-width: 100%; }

  .svc-about        { padding: 60px 0; }
  .svc-about-quote  { font-size: 26px; }

  .svc-why          { padding: 70px 0; }
  .svc-why .sec-head h2, .svc-products .sec-head h2,
  .svc-benefits .sec-head h2, .svc-how .sec-head h2,
  .svc-matters-title, .svc-industries .ind-title { font-size: 34px; }
  .svc-why-grid   { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }

  .svc-products-top    { grid-template-columns: 1fr; }
  .svc-products-bottom { grid-template-columns: 1fr; max-width: 100%; }

  .svc-benefits-row1 { grid-template-columns: 1fr; }
  .svc-benefits-row2 { grid-template-columns: 1fr; max-width: 100%; }

  .svc-steps-row  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .svc-steps-row::before { display: none; }

  .svc-matters-inner { grid-template-columns: 1fr; }
  .svc-matters-img-col { height: 280px; }
  .svc-matters-content { padding: 50px 30px; }

  .svc-ind-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 767px) {
          body, html{ overflow-x: hidden;}
  .svc-hero-title  { font-size: 30px; }
  .svc-hero-desc   { font-size: 14.5px; }

  .svc-about-quote { font-size: 22px; }
  .svc-about-pills { gap: 8px; }
  .svc-about-pill  { font-size: 16px; padding: 8px 16px; }

  .svc-why-grid    { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .svc-why-icon    { width: 80px; height: 80px; }

  .svc-steps-row   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-step-num    { width: 60px; height: 60px; font-size: 28px; border-radius: 12px; }

  .svc-ind-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; display:unset; }
  .svc-ind-card    { padding: 20px 12px 16px; }
  .svc-ind-icon    { width: 64px; height: 64px; }
  .svc-ind-icon img { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
  .svc-hero-title  { font-size: 26px; }
  .svc-why-grid    { grid-template-columns: 1fr 1fr; }
  .svc-ind-grid    { grid-template-columns: repeat(2, 1fr); }
  .svc-steps-row   { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */

.cu-offices {
  background: #fff;
    padding: 90px 0 60px 0;
}

/* Two office cards side by side */
.cu-offices-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.cu-office-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 32px 28px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.cu-office-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cu-office-card--dark  { background: var(--primary); border-color: var(--primary); }

/* Icon circle — filled teal on white card, white circle on dark card */
.cu-office-icon {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cu-office-card--dark .cu-office-icon {
  background: #fff;
}
.cu-office-icon i { font-size: 22px; color: #fff; }

.cu-office-name {
  font-family: 'Lato', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--primary); margin: 0;
  line-height: 1.2;
  margin-bottom:20px;
}
.cu-office-card--dark .cu-office-name { color: #fff; }

.cu-office-address {
  font-size: 16px; color: var(--dark-txt);
  line-height: 1.7; margin-bottom: 30px;
}
.cu-office-card--dark .cu-office-address { color: #fff; }

.cu-office-contact { display: flex; flex-direction: column; gap: 12px; }

.cu-contact-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.cu-contact-row i { font-size: 17px; color: var(--primary); flex-shrink: 0; }
.cu-office-card--dark .cu-contact-row i { color: rgba(255,255,255,0.85); }
.cu-contact-row a { color: var(--dark-txt); transition: color 0.15s ease; }
.cu-office-card--dark .cu-contact-row a { color: #fff; }
.cu-contact-row a:hover { color: var(--primary); }
.cu-office-card--dark .cu-contact-row a:hover { color: rgba(255,255,255,0.70); }

.contact-map-section {
  background: #F7F8F9;
  padding: 80px 0 90px;
}
.contact-map-wrap {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 36px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}
.contact-map-wrap .sec-head {
  margin-bottom: 28px;
  text-align: left;
}
.contact-map-wrap .sec-head h2 {
  font-size: 42px;
  margin: 0;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.contact-map-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}
.contact-map-copy {
  padding: 24px 24px 18px;
}
.contact-map-copy h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}
.contact-map-copy p {
  min-height: 58px;
  margin: 0;
  color: var(--body-txt);
  font-size: 15px;
  line-height: 1.65;
}
.contact-map-frame {
  flex: 1;
  min-height: 330px;
  background: var(--bg-gray);
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}

/* Business hours pill — single grey pill with divider */
.cu-hours-bar {
  display: flex;
  justify-content: center;
  padding: 0 0 52px;
}
.cu-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-gray);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 28px;
}
.cu-hours-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; color: var(--dark-txt);
  white-space: unset;
}
.cu-hours-dot {
  width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0;
}
.cu-hours-dot--green { background: var(--primary); }
.cu-hours-dot--red   { background: #EC2126; }
.cu-hours-divider {
  width: 1.5px; height: 22px;
  background: var(--border);
  margin: 0 24px; flex-shrink: 0;
}
.cu-hours-closed { color: #EC2126; font-weight: 700; }
button.faq-btn.collapsed {
  background: var(--primary);
  color: #fff;}
/* Form section */
.cu-form-section {
  background: #fff;
  padding: 0 0 80px;
}
.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 44px;
  align-items: start;
}
.cu-form-illustration {
  border-radius: var(--radius);
  overflow: hidden;
  background: #d8e8f5;
  min-height: 480px;
}
.cu-form-illustration img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover; object-position: center top;
  display: block;
  border-radius: var(--radius);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .cu-form-row { grid-template-columns: 1fr 1.4fr; }
}
@media (max-width: 991px) {
  .cu-offices-row  { grid-template-columns: 1fr; }
  .cu-form-row     { grid-template-columns: 1fr; }
  .cu-form-illustration { min-height: 260px; }
  .cu-form-illustration img { min-height: 260px; }
  .contact-map-grid { grid-template-columns: 1fr; }
  .contact-map-copy p { min-height: 0; }
}
@media (max-width: 767px) {
  .cu-office-card  { padding: 24px 20px; }
  .cu-office-name  { font-size: 20px; }
  .cu-hours-pill   { padding: 10px 20px; flex-direction: column; gap: 10px; border-radius: 16px; }
  .cu-hours-divider { width: 80%; height: 1.5px; margin: 0; }
  .contact-map-section { padding: 56px 0 64px; }
  .contact-map-wrap { padding: 20px; border-radius: 16px; }
  .contact-map-wrap .sec-head h2 { font-size: 32px; }
  .contact-map-copy { padding: 20px; }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 280px;
  }
}

/* ============================================================
   OUR WORK PAGE
   ============================================================ */
.work-page-hero {
  background: #fff;
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--border);
}
.work-page-title {
  font-family: 'Lato', sans-serif;
  font-size: 52px; font-weight: 900;
  color: var(--dark-txt); line-height: 1.1; margin: 0;
}

.work-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 60px 0 80px;
}
.work-page-item { cursor: pointer; overflow: hidden; }
.work-page-item img {
  width: 100%; border-radius: var(--radius);
  height: 320px; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.work-page-item:hover img { transform: scale(1.03); }
.work-page-item-title {
  font-family: 'Lato', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--dark-txt); margin-top: 14px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .testi-carousel .owl-item .testi-card{height:auto;}
  .cu-offices-row   { grid-template-columns: 1fr; }
  .cu-form-row      { grid-template-columns: 1fr; }
  .cu-form-illustration { min-height: 260px; }
  .work-page-title  { font-size: 38px; }
  .work-page-grid   { gap: 20px; }
  .work-page-item img { height: 240px; }
}
@media (max-width: 767px) {
  .cu-office-card   { padding: 24px 18px; }
  .cu-hours-bar     { gap: 20px; flex-direction: column; align-items: flex-start; padding-left: 4px; }
  .work-page-title  { font-size: 30px; }
  .work-page-grid   { grid-template-columns: 1fr; }
  .work-page-item img { height: 220px; }
}
@media (max-width: 480px) {
  .cu-offices-row   { grid-template-columns: 1fr; }
}


/* SEO/accessibility page intro blocks */
.page-title-section {
  background: #fff;
  padding: 52px 0 28px;
}
.page-title-section h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  color: var(--primary);
  margin: 10px 0 12px;
}
.page-title-section p {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-txt);
  margin: 0;
}
.work-page-section .sec-head {
  margin-bottom: 34px;
}
.why-content h3 { font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 6px; }
.step-item h3 { font-size: 20px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3; }
.svc-benefit-text h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.svc-step-item h3 { font-size: 16px; font-weight: 700; color: var(--dark-txt); margin-bottom: 8px; line-height: 1.3; }

/* ============================================================
   PREMIUM CONTENT PAGES
   ============================================================ */
.content-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29,94,127,0.96), rgba(22,79,107,0.92)),
    url('../images/hero-banner.webp') center/cover no-repeat;
  padding: 86px 0 92px;
  color: #fff;
}
.content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.content-hero .container { position: relative; z-index: 1; }
.content-hero .label-sm { color: rgba(255,255,255,0.78); }
.content-hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.content-hero-sub {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.content-section {
  background: linear-gradient(180deg, #f6f9fb 0%, #fff 48%);
  padding: 72px 0 86px;
}
.content-wrap {
  max-width: 1120px;
  margin: 0 auto;
}
.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 54px;
}
.intro-copy,
.intro-highlight,
.legal-shell,
.content-note {
  background: #fff;
  border: 1px solid rgba(29,94,127,0.12);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(29,94,127,0.08);
}
.intro-copy { padding: 38px; }
.intro-copy h2,
.section-heading h2,
.legal-block h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark-txt);
  margin-bottom: 16px;
}
.intro-copy p,
.section-heading p,
.legal-block p,
.solution-card p,
.seo-feature-card p,
.content-note p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--body-txt);
}
.intro-highlight {
  padding: 30px;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.intro-highlight::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.intro-highlight strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.intro-highlight span {
  display: block;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.84);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.solution-grid,
.seo-feature-grid,
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 58px;
}
.solution-card,
.seo-feature-card,
.link-card {
  background: #fff;
  border: 1px solid rgba(29,94,127,0.12);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(29,94,127,0.07);
  transition: var(--tr);
}
.solution-card:hover,
.seo-feature-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,94,127,0.30);
  box-shadow: 0 18px 42px rgba(29,94,127,0.13);
}
.solution-icon,
.sf-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #e8f2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.solution-icon img,
.sf-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.solution-card h3,
.seo-feature-card h3,
.link-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--dark-txt);
  margin-bottom: 10px;
}
.link-card {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  color: inherit;
}
.link-card span {
  margin-top: auto;
  color: var(--primary);
  font-weight: 800;
}
.legal-shell {
  padding: 18px 34px 34px;
}
.content-updated {
  display: inline-flex;
  align-items: center;
  margin: 16px 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f2f7;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}
.legal-block {
  position: relative;
  padding: 28px 0 28px 34px;
  border-top: 1px solid rgba(29,94,127,0.12);
}
.legal-block::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(29,94,127,0.10);
}
.legal-block h2 { font-size: clamp(24px, 3vw, 34px); }
.legal-block h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0 8px;
}
.legal-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.legal-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-txt);
}
.legal-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "bootstrap-icons";
  color: var(--primary);
}
.content-note {
  padding: 26px 28px;
  background: #f8fbfd;
  box-shadow: none;
}
.content-note a,
.legal-block a,
.intro-copy a,
.link-card:hover h3 { color: var(--primary); }

@media (max-width: 991px) {
  .content-hero { padding: 70px 0 76px; }
  .intro-panel { grid-template-columns: 1fr; }
  .solution-grid,
  .seo-feature-grid,
  .link-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .content-hero { padding: 56px 0 62px; }
  .content-hero-sub { font-size: 16px; }
  .content-section { padding: 48px 0 64px; }
  .intro-copy,
  .intro-highlight,
  .solution-card,
  .seo-feature-card,
  .link-card,
  .legal-shell { padding: 24px 20px; }
  .solution-grid,
  .seo-feature-grid,
  .link-card-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 42px; }
  .legal-block { padding-left: 24px; }
  .hero-proof-pill { width: 100%; justify-content: center; }
}
