/* ═══════════════════════════════════════
   Crework Tech — Global Stylesheet
   Brand Color: #175C9A | Light Theme
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue:        #175C9A;
  --blue-dark:   #0f3f6e;
  --blue-mid:    #1e72c0;
  --blue-light:  #e8f2fb;
  --blue-xlight: #f0f6fc;
  --accent:      #f5a623;
  --accent-dark: #d4891a;
  --bg:          #f7f9fc;
  --text:        #0d1f33;
  --text-mid:    #3d5166;
  --text-muted:  #7a92a8;
  --border:      #d6e4f0;
  --border-soft: #e8f0f8;
  --shadow:      0 2px 20px rgba(23,92,154,.10);
  --shadow-md:   0 8px 40px rgba(23,92,154,.14);
  --shadow-lg:   0 20px 60px rgba(23,92,154,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden;}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

/* ── BOOTSTRAP OVERRIDES ── */
.btn-blue {
  background: var(--blue); color: #fff; border: none;
  font-weight: 700; box-shadow: 0 6px 20px rgba(23,92,154,.28); transition: .25s;
}
.btn-blue:hover {
  background: var(--blue-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(23,92,154,.38);
}
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue); font-weight: 700; transition: .25s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-white {
  background: #fff; color: var(--blue); font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,.15); transition: .2s; border: none;
}

.btn-yellow {
  background: var(--accent); color: #fff; border: none;
  font-weight: 700; box-shadow: 0 6px 20px rgba(23,92,154,.28); transition: .25s;
}

.btn-yellow:hover { transform: translateY(-2px); color: var(--blue); }

.btn-white:hover { transform: translateY(-2px); color: var(--blue); }
.btn-wa {
  background: #25D366; color: #fff; font-weight: 700;
  border: none; box-shadow: 0 6px 20px rgba(37,211,102,.3); transition: .2s;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  display: inline-flex; align-items: center;
  background: var(--blue-light); color: var(--blue);
  padding: .28rem .9rem; border-radius: 20px;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; color: var(--text); margin-bottom: .9rem;
}
.section-title em { color: var(--blue); font-style: normal; }
.section-sub { color: var(--text-mid); font-size: .97rem; line-height: 1.8; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(23,92,154,.07);
  padding: .8rem 0;
}
.logo-mark {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 9px; display: inline-grid; place-items: center;
  font-weight: 900; font-size: 1rem; color: #fff;
  box-shadow: 0 4px 12px rgba(23,92,154,.3); flex-shrink: 0;
}
.navbar-brand span { font-weight: 800; font-size: 1.1rem; color: var(--text); }
.navbar-brand span em { font-style: normal; color: var(--blue); }
.navbar-nav .nav-link {
  color: var(--text-mid) !important; font-weight: 500;
  font-size: .9rem; padding: .4rem .9rem !important; transition: .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-link { color: var(--blue) !important; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ── PAGE HERO HEADER ── */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--blue-xlight) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); margin-top: .4rem;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 1.8rem;
  box-shadow: var(--shadow); transition: .3s;
  cursor: pointer; height: 100%; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0); transition: .3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(23,92,154,.2); color: inherit; }
.service-card:hover::after { transform: scaleX(1); }
.s-icon {
  width: 50px; height: 50px; background: var(--blue-light);
  border-radius: 13px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin: 0; }
.s-arrow { color: var(--blue); font-size: .82rem; font-weight: 700; margin-top: .9rem; opacity: 0; transition: .25s; display: inline-block; }
.service-card:hover .s-arrow { opacity: 1; }

/* ── CASE STUDY CARDS ── */
.case-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: .3s;
  height: 100%; text-decoration: none; display: block; color: inherit;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; }
.case-thumb {
  height: 150px; display: flex; align-items: center;
  justify-content: center; font-size: 2.8rem; position: relative;
}
.ct-1 { background: linear-gradient(135deg, #e8f2fb, #c5daf5); }
.ct-2 { background: linear-gradient(135deg, #edf7ee, #c5e8c8); }
.ct-3 { background: linear-gradient(135deg, #fef3e8, #fde0b8); }
.case-tag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--blue); color: #fff;
  padding: .22rem .65rem; border-radius: 6px; font-size: .7rem; font-weight: 700;
}
.case-body { padding: 1.4rem; }
.case-body h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.case-body p { font-size: .82rem; color: var(--text-muted); margin-bottom: .9rem; }
.rs strong { font-size: 1.25rem; font-weight: 900; color: var(--blue); display: block; line-height: 1; }
.rs span { font-size: .7rem; color: var(--text-muted); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testi-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 1.8rem;
  box-shadow: var(--shadow); height: 100%;
}
.qmark { font-family: Georgia, serif; font-size: 3.5rem; color: var(--blue); opacity: .12; line-height: 1; margin-bottom: -.3rem; }
.stars-row { color: var(--accent); font-size: .82rem; letter-spacing: .1em; margin-bottom: .6rem; }
.testi-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 1.2rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); display: grid; place-items: center;
  font-weight: 800; font-size: .88rem; color: #fff; flex-shrink: 0;
}
.t-info h5 { font-size: .85rem; font-weight: 700; color: var(--text); margin: 0; }
.t-info span { font-size: .73rem; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 22px; padding: 3.5rem;
  text-align: center; box-shadow: 0 20px 60px rgba(23,92,154,.22);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: .7rem; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 1.8rem; font-size: .97rem; }

/* ── WHY US ── */
.why-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 22px; padding: 2.5rem; color: #fff; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px; background: rgba(255,255,255,.05); border-radius: 50%;
}
.why-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.why-mini-box { background: rgba(255,255,255,.1); border-radius: 12px; padding: 1rem; text-align: center; }
.why-mini-box h4 { font-size: 1.6rem; font-weight: 900; margin: 0; }
.why-mini-box span { font-size: .7rem; opacity: .7; font-weight: 500; display: block; margin-top: .15rem; }
.why-badge {
  background: #fff; border-radius: 14px; padding: .9rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; gap: .6rem; align-items: center;
  position: absolute; top: -14px; right: -14px;
}
.why-badge .b-icon {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 9px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.why-badge h5 { font-size: .82rem; font-weight: 700; color: var(--text); margin: 0; }
.why-badge p { font-size: .72rem; color: var(--text-muted); margin: 0; }
.why-check {
  width: 22px; height: 22px; background: var(--blue);
  border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; margin-top: .2rem;
}
.why-point h4 { font-size: .93rem; font-weight: 700; color: var(--text); margin-bottom: .15rem; }
.why-point p { font-size: .84rem; color: var(--text-mid); margin: 0; }

/* ── CLIENTS STRIP ── */
.clients-strip {
  background: #fff; border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft); padding: 1.8rem 0;
}
.clients-strip p { font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.client-pill {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  display: inline-block; margin: .25rem;
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(150deg, #fff 0%, var(--blue-xlight) 55%, #deedf8 100%);
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
  min-height: calc(100vh - 66px); display: flex; align-items: center;
}
.hero-dots {
  position: absolute; right: 0; top: 0; width: 45%; height: 100%;
  opacity: .1; background-image: radial-gradient(var(--blue) 1.5px, transparent 1.5px);
  background-size: 24px 24px; pointer-events: none;
}
.hero-blob {
  position: absolute; right: -100px; bottom: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(23,92,154,.07), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(23,92,154,.1); border: 1px solid rgba(23,92,154,.22);
  color: var(--blue); padding: .38rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; margin-bottom: 1.4rem;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--blue);
  border-radius: 50%; animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -.03em; color: var(--text); margin-bottom: 1.3rem;
}
.hero-title em { color: var(--blue); font-style: normal; }
.hero-lead { font-size: 1.02rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 2.2rem; }
.hero-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid), var(--accent));
}
.stat-box { background: var(--blue-xlight); border-radius: 12px; padding: 1rem; text-align: center; }
.stat-box h3 { font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; margin: 0; }
.stat-box p { font-size: .7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: .2rem 0 0; }
.hero-loc {
  display: flex; align-items: center; gap: .6rem;
  background: var(--blue-xlight); border-radius: 10px;
  padding: .85rem; border: 1px solid var(--border-soft);
}
.hero-rating { display: flex; align-items: center; gap: .7rem; background: var(--blue-xlight); border-radius: 10px; padding: .85rem; }
.stars-yellow { color: var(--accent); font-size: .9rem; }

/* ── SERVICE DETAIL ── */
.sd-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 2.2rem;
  box-shadow: var(--shadow); transition: .3s;
}
.sd-card:hover { box-shadow: var(--shadow-md); border-color: rgba(23,92,154,.2); }
.sd-icon {
  width: 65px; height: 65px; background: var(--blue-light);
  border-radius: 16px; display: grid; place-items: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.sd-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.tag {
  background: var(--blue-light); color: var(--blue);
  padding: .25rem .75rem; border-radius: 20px;
  font-size: .75rem; font-weight: 600;
  border: 1px solid rgba(23,92,154,.14); display: inline-block; margin: .2rem;
}

/* ── CASE FULL ── */
.case-full-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.cf-header { padding: 2.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.cf-header.bg1 { background: linear-gradient(135deg, var(--blue-xlight), #c5daf5); }
.cf-header.bg2 { background: linear-gradient(135deg, #edf7ee, #c5e8c8); }
.cf-header.bg3 { background: linear-gradient(135deg, #fef8ef, #fde8c4); }
.cf-lbl { background: var(--blue); color: #fff; padding: .25rem .75rem; border-radius: 6px; font-size: .73rem; font-weight: 700; display: inline-block; margin-bottom: .6rem; }
.cf-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 0; }
.cf-body { padding: 2rem; }
.cf-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: .6rem; }
.cf-col p { font-size: .87rem; color: var(--text-mid); line-height: 1.78; }
.cf-row { display: flex; justify-content: space-between; align-items: center; padding: .42rem 0; border-bottom: 1px solid var(--border-soft); }
.cf-row:last-child { border-bottom: none; }
.cf-row span { font-size: .83rem; color: var(--text-muted); }
.cf-row strong { font-size: .87rem; font-weight: 800; color: var(--blue); }

/* ── ABOUT ── */
.a-stat { background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; padding: 1.8rem; text-align: center; box-shadow: var(--shadow); }
.a-stat h3 { font-size: 2.3rem; font-weight: 900; color: var(--blue); margin: 0; }
.a-stat p { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 0; font-weight: 500; }
.val-card { background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; padding: 1.8rem; box-shadow: var(--shadow); height: 100%; }
.val-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.val-card h4 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.val-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.team-card { background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; padding: 1.7rem; text-align: center; box-shadow: var(--shadow); }
.t-av { width: 60px; height: 60px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); border-radius: 50%; margin: 0 auto .9rem; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; color: #fff; }
.team-card h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.team-card p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ── CONTACT FORM ── */
.cf-wrap { background: #fff; border: 1px solid var(--border-soft); border-radius: 22px; padding: 2.3rem; box-shadow: var(--shadow-md); }
.cf-wrap h3 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: .25rem; }
.f-label { font-size: .75rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; display: block; }
.form-control, .form-select {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .88rem; padding: .68rem 1rem;
}
.form-control:focus, .form-select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(23,92,154,.08); }
.c-icon { width: 42px; height: 42px; background: var(--blue-light); border-radius: 11px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.c-text h4 { font-size: .86rem; font-weight: 700; color: var(--text); margin-bottom: .1rem; }
.c-text p, .c-text a { font-size: .83rem; color: var(--text-mid); text-decoration: none; margin: 0; }
.c-text a:hover { color: var(--blue); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 998;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 25px rgba(37,211,102,.45);
  text-decoration: none; transition: .3s;
  overflow: hidden; /* contain the ring */
}


.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 35px rgba(37,211,102,.5); }
.wa-ring { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: ring 2s infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.8}100%{transform:scale(1.55);opacity:0} }
.wa-float svg { width: 29px; height: 29px; fill: #fff; position: relative; z-index: 1; }
.wa-tip { position: absolute; right: 68px; background: var(--text); color: #fff; padding: .45rem .9rem; border-radius: 7px; font-size: .78rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: .2s; }
.wa-float:hover .wa-tip { opacity: 1; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,.85); padding: 3.5rem 0 2rem; }
.f-brand p { font-size: .83rem; color: rgba(255,255,255,.4); margin: .7rem 0 1.3rem; line-height: 1.7; }
.f-social a { width: 33px; height: 33px; border: 1px solid rgba(255,255,255,.15); border-radius: 7px; display: inline-grid; place-items: center; color: rgba(255,255,255,.45); font-size: .78rem; text-decoration: none; transition: .2s; font-weight: 700; margin-right: .4rem; }
.f-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.f-col h5 { font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.88); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.f-col ul { list-style: none; padding: 0; margin: 0; }
.f-col ul li { margin-bottom: .5rem; }
.f-col a { color: rgba(255,255,255,.38); text-decoration: none; font-size: .83rem; transition: .2s; }
.f-col a:hover { color: rgba(255,255,255,.88); }
.f-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.4rem; }
.f-bottom p { font-size: .75rem; color: rgba(255,255,255,.28); margin: 0; }

/* ── TESTI SECTION BG ── */
.testi-section { background: linear-gradient(155deg, var(--blue-xlight) 0%, #fff 60%); }
.why-section { background: #fff; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
/* ═══════════════════════════════════════
   Flash Alert — Contact Page
   ═══════════════════════════════════════ */

.alert-flash {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  margin: 1.5rem auto 0;
  max-width: 960px;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  animation: flashIn .35s ease;
}

/* Success */
.alert-flash.alert-success {
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  color: #1a7a40;
}

/* Error */
.alert-flash.alert-error {
  background: #fdedec;
  border: 1px solid #f5b7b1;
  color: #b03a2e;
}

/* Icon circle */
.flash-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
  line-height: 1;
}

.alert-success .flash-icon {
  background: #1a7a40;
  color: #fff;
}

.alert-error .flash-icon {
  background: #b03a2e;
  color: #fff;
}

/* Close button */
.flash-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: .4;
  transition: opacity .2s;
  padding: 0;
  color: inherit;
}

.flash-close:hover {
  opacity: 1;
}

/* Slide-in animation */
@keyframes flashIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Auto-dismiss fade out (optional — needs JS) */
.alert-flash.fade-out {
  animation: flashOut .5s ease forwards;
}

@keyframes flashOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Slightly smaller on mobile */
@media (max-width: 576px) {
  .nav-logo {
    height: 36px;
  }
}

/* ═══════════════════════════════
   FAQ Page
   ═══════════════════════════════ */

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.faq-sidebar-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.faq-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.faq-cat {
  display: block;
  padding: .55rem .9rem;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: .2s;
}
.faq-cat:hover,
.faq-cat.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}

/* Group label */
.faq-group {
  margin-bottom: 2.5rem;
  scroll-margin-top: 90px;
}
.faq-group-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--blue-light);
}

/* FAQ Item */
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: .7rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-item.open {
  border-color: rgba(23,92,154,.2);
  box-shadow: var(--shadow);
}

/* Question button */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s, color .2s;
  line-height: 1.5;
}
.faq-q:hover {
  background: var(--blue-xlight);
  color: var(--blue);
}
.faq-item.open .faq-q {
  background: var(--blue-xlight);
  color: var(--blue);
}

/* Plus/minus icon */
.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.3rem 1.2rem;
}
.faq-a p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}
.faq-a a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.faq-a a:hover {
  text-decoration: underline;
}

.entity-para {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.9;
  background: var(--blue-xlight);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.3rem;
  margin-top: 1.5rem;
}

.entity-para strong {
  color: var(--blue);
  font-weight: 700;
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.faq-sidebar-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.faq-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.faq-cat {
  display: block;
  padding: .55rem .9rem;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: .2s;
}
.faq-cat:hover,
.faq-cat.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}

/* Stats row in sidebar */
.faq-stat {
  background: var(--blue-xlight);
  border-radius: 10px;
  padding: .9rem;
  text-align: center;
  margin-top: 1.5rem;
}
.faq-stat h4 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  margin: 0;
  line-height: 1;
}
.faq-stat p {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: .25rem 0 0;
}

/* Group label */
.faq-group {
  margin-bottom: 2.5rem;
  scroll-margin-top: 90px;
}
.faq-group-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.faq-group-label .gl-icon {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* FAQ Item */
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: .65rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-item.open {
  border-color: rgba(23,92,154,.22);
  box-shadow: var(--shadow);
}

/* Question button */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s, color .2s;
  line-height: 1.5;
}
.faq-q:hover {
  background: var(--blue-xlight);
  color: var(--blue);
}
.faq-item.open .faq-q {
  background: var(--blue-xlight);
  color: var(--blue);
}

/* Plus/minus icon */
.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s ease;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.3rem 1.2rem;
}
.faq-a p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin: 0;
  border-top: 1px solid var(--border-soft);
  padding-top: .9rem;
}
.faq-a a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.faq-a a:hover {
  text-decoration: underline;
}

/* Entity para */
.entity-para {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.9;
  background: var(--blue-xlight);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.3rem;
  margin-top: 1.5rem;
}
.entity-para strong {
  color: var(--blue);
  font-weight: 700;
}

/* Search bar */
.faq-search-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.faq-search {
  width: 100%;
  padding: .85rem 1rem .85rem 3rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.faq-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,92,154,.08);
}
.faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}
.faq-no-results {
  display: none;
  text-align: center;
  padding: 2.5rem;
  color: var(--text-muted);
  font-size: .9rem;
  background: var(--blue-xlight);
  border-radius: 12px;
}

/* Mobile pill categories */
.faq-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.faq-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: .38rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: .2s;
  white-space: nowrap;
}
.faq-pill:hover,
.faq-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ═══════════════════════════════
   Service Page Hero
   ═══════════════════════════════ */

/* Hero */
.sp-hero {
  background: linear-gradient(150deg, #fff 0%, var(--blue-xlight) 55%, #deedf8 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.sp-breadcrumb {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.sp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: .2s;
}
.sp-breadcrumb a:hover { color: var(--blue); }
.sp-breadcrumb span { margin: 0 .4rem; }
.sp-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text);
  margin: .6rem 0 1rem;
}
.sp-title em { color: var(--blue); font-style: normal; }
.sp-lead {
  font-size: .98rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 1.8rem;
  max-width: 560px;
}
.sp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-top: 1.4rem;
}
.sp-trust-item {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sp-trust-item i {
  color: var(--blue);
  font-size: .85rem;
}

/* Hero icon card */
.sp-icon-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.sp-big-icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.sp-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.sp-cs {
  background: var(--blue-xlight);
  border-radius: 10px;
  padding: .9rem;
  text-align: center;
}
.sp-cs strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.sp-cs span {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .2rem;
  display: block;
}

/* Offer cards */
.sp-offer-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  transition: .3s;
}
.sp-offer-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: rgba(23,92,154,.18);
  transform: translateY(-4px);
}
.sp-offer-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: .8rem 0 .4rem;
}
.sp-offer-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Process steps */
.sp-step {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow);
}
.sp-step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .15;
  line-height: 1;
  margin-bottom: .6rem;
  font-variant-numeric: tabular-nums;
}
.sp-step h4 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.sp-step p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Why us points on service pages */
.sp-why-point {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: .25s;
}
.sp-why-point:hover {
  border-color: rgba(23,92,154,.2);
  box-shadow: var(--shadow-md);
}
.sp-why-point .wp-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sp-why-point h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}
.sp-why-point p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Results/stats band */
.sp-results {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: #fff;
}
.sp-results h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.sp-results p {
  opacity: .7;
  font-size: .85rem;
  margin: 0;
}
.sp-result-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .2rem;
}
.sp-result-label {
  font-size: .72rem;
  opacity: .65;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ═══════════════════════════════
   Service Pages — Additional
   ═══════════════════════════════ */

/* Offer card icon */
.sp-offer-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: .9rem;
  display: block;
}

/* Related services card */
.sp-related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: .25s;
  box-shadow: var(--shadow);
}
.sp-related-card:hover {
  border-color: rgba(23,92,154,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.sp-related-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.sp-related-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .15rem;
}
.sp-related-card p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}
.sp-related-card .bi-arrow-right {
  margin-left: auto;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.sp-related-card:hover .bi-arrow-right {
  opacity: 1;
  transform: translateX(3px);
}

/* Mobile: stack cleanly */
@media (max-width: 991px) {
  .sp-hero { padding: 2.8rem 0 2.5rem; }
  .sp-lead { max-width: 100%; }
  .hero-dots { width: 100%; opacity: .05; }
}

/* ═══════════════════════════════
   Design Principles Cards
   (web-design-company-in-ranchi)
   ═══════════════════════════════ */
.design-principle-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}
.design-principle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23,92,154,.18);
}
.dp-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .07;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  letter-spacing: -.04em;
}
.dp-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.design-principle-card h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.design-principle-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0;
}


/* ═══════════════════════════════
   SEO Timeline
   (seo-services-in-ranchi only)
   ═══════════════════════════════ */
.seo-timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.seo-tl-item {
  display: grid;
  grid-template-columns: 48px 24px 1fr;
  gap: 0 1.2rem;
  align-items: start;
}
.seo-tl-dot {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(23,92,154,.3);
  z-index: 1;
}
.seo-tl-line {
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), var(--blue-light));
  min-height: 80px;
  margin: 0 auto;
  align-self: stretch;
}
.seo-tl-line--last {
  background: transparent;
}
.seo-tl-content {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  transition: .25s;
}
.seo-tl-content:hover {
  border-color: rgba(23,92,154,.2);
  box-shadow: var(--shadow-md);
}
.seo-tl-month {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .7rem;
  border-radius: 20px;
  margin-bottom: .6rem;
}
.seo-tl-content h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.seo-tl-content p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0;
}

@media (max-width: 576px) {
  .seo-tl-item {
    grid-template-columns: 38px 16px 1fr;
    gap: 0 .8rem;
  }
  .seo-tl-dot { width: 38px; height: 38px; font-size: .9rem; }
}

/* ═══════════════════════════════
   Channel Comparison Cards
   (digital-marketing-agency only)
   ═══════════════════════════════ */
.dm-channel-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.dm-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dm-channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}
.dm-channel-google::before { background: linear-gradient(90deg, #4285F4, #34A853); }
.dm-channel-meta::before   { background: linear-gradient(90deg, #1877F2, #E1306C); }

.dm-channel-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.dm-channel-google .dm-channel-logo { background: #EAF1FF; color: #4285F4; }
.dm-channel-meta   .dm-channel-logo { background: #EDF4FF; color: #1877F2; }

.dm-channel-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .3rem;
}
.dm-channel-tag {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.dm-channel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.dm-channel-list li {
  font-size: .86rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.5;
}
.dm-channel-list li i {
  color: var(--blue);
  font-size: .9rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.dm-channel-stat {
  background: var(--blue-xlight);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .82rem;
  color: var(--text-mid);
}
.dm-channel-stat strong { color: var(--blue); }

/* VS badge */
.dm-vs {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .88rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(23,92,154,.3);
  letter-spacing: .05em;
}

/* Recommendation bar */
.dm-recommendation {
  background: #fff;
  border: 1.5px solid rgba(245,166,35,.4);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
  box-shadow: 0 2px 12px rgba(245,166,35,.1);
}
.dm-recommendation strong { color: var(--text); }

@media (max-width: 991px) {
  .dm-vs { margin: .5rem auto; }
}

.error-section {
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #fff 0%, var(--blue-xlight) 55%, #deedf8 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero-dots {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(var(--blue) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.error-blob {
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23,92,154,.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.error-num {
  font-size: clamp(7rem, 18vw, 13rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue);
  opacity: .1;
  user-select: none;
  margin-bottom: -.5rem;
}
.error-icon-wrap {
  width: 90px;
  height: 90px;
  background: var(--blue-light);
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(23,92,154,.15);
}
.error-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: .7rem;
}
.error-title em { color: var(--blue); font-style: normal; }
.error-lead {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 460px;
  margin: 0 auto 2rem;
}
.error-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  max-width: 420px;
  margin: 0 auto 2rem;
}
.error-link-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow);
  transition: .25s;
}
.error-link-card:hover {
  border-color: rgba(23,92,154,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.el-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--blue);
}
.error-link-card h5 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .1rem;
}
.error-link-card p {
  font-size: .72rem;
  color: var(--text-muted);
  margin: 0;
}
.error-divider {
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
}
.error-divider::before,
.error-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── AI RESOURCES PAGE LOCAL STYLES ── */

/* Topic cards (resource articles) */
.ai-topic-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ai-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23,92,154,.2);
}
.ai-topic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transition: .3s;
  transform-origin: left;
}
.ai-topic-card:hover::after { transform: scaleX(1); }

.ai-topic-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  padding: .22rem .75rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}
.ai-topic-icon {
  font-size: 2rem;
  margin-bottom: .9rem;
  line-height: 1;
  display: block;
}
.ai-topic-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.ai-topic-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.2rem;
  flex: 1;
}
.ai-topic-card .ai-read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.ai-topic-card:hover .ai-read-more { gap: .6rem; }

/* Inline article / explainer sections */
.ai-article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  scroll-margin-top: 90px;
}
.ai-article-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--blue);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ai-article-label span {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--blue-light);
  border-radius: 6px;
  text-align: center;
  line-height: 22px;
  font-size: .75rem;
}
.ai-article h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: .9rem;
  line-height: 1.2;
}
.ai-article h2 em { color: var(--blue); font-style: normal; }
.ai-article p {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.ai-article p:last-child { margin-bottom: 0; }
.ai-article strong { color: var(--text); font-weight: 700; }
.ai-article h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 1.6rem 0 .5rem;
}

/* Checklist inside articles */
.ai-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ai-checklist li {
  font-size: .9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  line-height: 1.6;
}
.ai-checklist li i {
  color: var(--blue);
  font-size: .95rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* Comparison table */
.ai-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .87rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin: 1.2rem 0;
}
.ai-compare-table thead tr {
  background: var(--blue);
  color: #fff;
}
.ai-compare-table thead th {
  padding: .85rem 1.1rem;
  font-weight: 700;
  text-align: left;
  font-size: .82rem;
  letter-spacing: .04em;
}
.ai-compare-table tbody tr {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  transition: background .2s;
}
.ai-compare-table tbody tr:hover { background: var(--blue-xlight); }
.ai-compare-table tbody tr:last-child { border-bottom: none; }
.ai-compare-table td {
  padding: .78rem 1.1rem;
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.6;
}
.ai-compare-table td:first-child {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.ai-compare-table td .badge-yes {
  background: #eafaf1;
  color: #1a7a40;
  padding: .15rem .6rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
}
.ai-compare-table td .badge-partial {
  background: #fff8ee;
  color: var(--accent-dark);
  padding: .15rem .6rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
}

/* Highlight box */
.ai-highlight {
  background: var(--blue-xlight);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.2rem 0;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.78;
}
.ai-highlight strong { color: var(--blue); }

/* Tool cards */
.ai-tool-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: .25s;
  height: 100%;
}
.ai-tool-card:hover {
  border-color: rgba(23,92,154,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ai-tool-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ai-tool-card h4 {
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .25rem;
}
.ai-tool-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.ai-tool-pill {
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .65rem;
  border-radius: 20px;
  display: inline-block;
}

/* Sticky sidebar TOC */
.ai-toc {
  position: sticky;
  top: 85px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.ai-toc-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border-soft);
}
.ai-toc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.ai-toc-list a {
  display: block;
  padding: .5rem .8rem;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: .2s;
  line-height: 1.4;
}
.ai-toc-list a:hover,
.ai-toc-list a.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}
.ai-toc-cta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
}

/* ═══════════════════════════════════════
   GEO / AI Search CTA Banner
   (seo-services-in-ranchi — after hero)
   ═══════════════════════════════════════ */

.geo-banner-wrap {
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.geo-banner {
  background: linear-gradient(135deg, var(--text) 0%, #1a2f4a 100%);
  border-radius: 22px;
  padding: 2.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(10,20,40,.28);
  position: relative;
  overflow: hidden;
}

/* Background glows */
.geo-banner-glow-1 {
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(23,92,154,.4), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.geo-banner-glow-2 {
  position: absolute;
  left: 35%; bottom: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,166,35,.14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.geo-banner-glow-3 {
  position: absolute;
  left: -60px; top: 50%;
  transform: translateY(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(23,92,154,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Left side */
.geo-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  flex: 1;
  min-width: 300px;
  position: relative;
}

.geo-banner-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-top: .2rem;
}

.geo-banner-meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .6rem;
  flex-wrap: wrap;
}

.geo-banner-badge {
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 20px;
}

.geo-banner-label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.geo-banner-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0 0 .7rem;
}

.geo-banner-title em {
  color: var(--accent);
  font-style: normal;
}

.geo-banner-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* Right side */
.geo-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  flex-shrink: 0;
}

.geo-banner-pills {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.geo-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.geo-banner-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.geo-btn-primary {
  background: var(--blue);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 11px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(23,92,154,.45);
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
}

.geo-btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(23,92,154,.5);
}

.geo-btn-ghost {
  background: rgba(255,255,255,.09);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 11px;
  text-decoration: none;
  white-space: nowrap;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
}

.geo-btn-ghost:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .geo-banner {
    padding: 2.2rem 2rem;
  }
  .geo-banner-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .geo-banner-wrap {
    margin-top: 1rem;
  }
  .geo-banner {
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
  }
  .geo-banner-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .geo-banner-title {
    font-size: 1.15rem;
  }
  .geo-banner-desc {
    font-size: .88rem;
  }
  .geo-btn-primary,
  .geo-btn-ghost {
    font-size: .88rem;
    padding: .75rem 1.3rem;
  }
}

/* ═══════════════════════════════════════
   Navbar Mega Menu — Services Dropdown
   ═══════════════════════════════════════ */
 
/* Toggle link */
.nav-services-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}
.nav-chevron {
  font-size: .65rem;
  transition: transform .25s ease;
  margin-top: .05rem;
}
.nav-services-dropdown:hover .nav-chevron,
.nav-services-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}
 
/* Navbar needs relative positioning for absolute mega menu */
.navbar { position: relative !important; }
 
/* Mega menu panel */
.nav-mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 96vw);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(23,92,154,.14);
  z-index: 1000;
  animation: megaFadeIn .18s ease;
}
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
 
/* Desktop — mega menu shown via JS .open class, hide mobile sub */
@media (min-width: 992px) {
  .nav-services-dropdown.open .nav-mega-menu { display: block; }
  .nav-mobile-sub { display: none !important; }
}
 
/* Inner grid */
.nmd-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 0;
  padding: 1.8rem;
  gap: 1rem;
}
 
/* Column label */
.nmd-col-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--text-muted);
  margin-bottom: .7rem;
  padding-bottom: .5rem;
  border-bottom: 1.5px solid var(--border-soft);
}
 
/* Menu item */
.nmd-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .7rem .8rem;
  border-radius: 11px;
  text-decoration: none;
  color: inherit;
  transition: .2s;
  margin-bottom: .15rem;
}
.nmd-item:hover {
  background: var(--blue-xlight);
  color: inherit;
}
.nmd-item:hover .nmd-icon {
  background: var(--blue-light);
}
.nmd-item:hover h5 {
  color: var(--blue);
}
.nmd-icon {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: .2s;
}
.nmd-item h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .15rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nmd-item p {
  font-size: .75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
 
/* "New" badge on AI item */
.nmd-new-badge {
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .1rem .45rem;
  border-radius: 20px;
  vertical-align: middle;
}
.nmd-item--new .nmd-icon {
  background: #fff3e0;
}
 
/* CTA column */
.nmd-cta-col {
  border-left: 1px solid var(--border-soft);
  padding-left: 1.2rem;
}
.nmd-cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nmd-cta-box h5 {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .35rem;
}
.nmd-cta-box p {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.1rem;
  line-height: 1.5;
}
.nmd-cta-btn {
  background: #25D366;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  transition: .2s;
  margin-bottom: .6rem;
}
.nmd-cta-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}
.nmd-all-services {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: .2s;
}
.nmd-all-services:hover {
  color: #fff;
}
 
/* Mobile — simple submenu, no mega menu */
@media (max-width: 991px) {
  .nav-mobile-sub {
    display: none;
    list-style: none;
    padding: .4rem 0 .6rem 1rem;
    margin: .2rem 0 0 .5rem;
    border-left: 2px solid var(--blue-light);
  }
  .nav-services-dropdown.open .nav-mobile-sub {
    display: block;
  }
  .nav-mobile-sub li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .6rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: .18s;
  }
  .nav-mobile-sub li a:hover,
  .nav-mobile-sub li a:active {
    background: var(--blue-xlight);
    color: var(--blue);
  }
  .nav-mobile-sub li a .nsub-icon {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
  }
  .nav-mobile-sub .nsub-new {
    background: var(--accent);
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .1rem .4rem;
    border-radius: 20px;
    margin-left: .2rem;
  }
  .nav-mobile-sub .nsub-divider {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--text-muted);
    padding: .5rem .6rem .25rem;
    display: block;
  }
}

/* Fix ai-compare-table mobile overflow */
@media (max-width: 768px) {
  .ai-compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: .78rem;
  }

  .ai-compare-table th,
  .ai-compare-table td {
    padding: .6rem .7rem;
    white-space: normal;
    min-width: 80px;
  }
}

