/* =============================================
   Ankiit Janggid — Custom Styles (Bootstrap 5 supplement)
   ============================================= */

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

:root {
  --yellow: #fede42;
  --yellow-soft: #fff7cf;
  --yellow-wash: #fffbea;
  --gold: #d99b00;
  --navy: #1a2566;
  --navy-soft: #24306f;
  --muted: #3d4a70;
  --cream: #f9efca;
  --border: #e2e8f0;
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
}

.fw-black {
  font-weight: 900 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-muted-brand {
  color: var(--muted) !important;
}
.bg-navy {
  background-color: var(--navy) !important;
}
.bg-yellow {
  background-color: var(--yellow) !important;
}
.bg-cream {
  background-color: var(--cream) !important;
}

/* ── Bootstrap overrides ── */

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-outline-brand:hover {
  background: rgba(254, 222, 66, 0.1);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--yellow);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ── Navbar ── */

.brand-navbar .navbar-brand {
  font-weight: 900;
  color: var(--navy) !important;
}
.brand-navbar .nav-link {
  font-weight: 600;
  color: rgba(26, 37, 102, 0.72) !important;
}
.brand-navbar .nav-link:hover,
.brand-navbar .nav-link.active {
  color: var(--navy) !important;
}


.aj-badge.inverted {
  background: var(--yellow);
  color: var(--navy);
}

/* ── Dot-grid helper ── */
.dot-grid {
  position: relative;
  overflow: hidden;
}
.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(254, 222, 66, 0.22) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.dot-grid > * {
  position: relative;
  z-index: 1;
}

/* ── Glow ── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* ── Section pill ── */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 50px;
}
.section-pill.light {
  background: rgba(254, 222, 66, 0.14);
  color: var(--navy);
  border: 1px solid rgba(254, 222, 66, 0.4);
}
.section-pill.light.accent {
  color: var(--yellow);
}

/* ── Hero ── */
.hero-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 55%);
  position: relative;
  overflow: hidden;
}
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(254, 222, 66, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero heading */
.hero-yellow {
  color: var(--yellow);
  position: relative;
}


/* Stats */
.stat-val {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  max-width: 370px;
  margin: 0 auto;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 2.5rem;
  border: 4px solid #fff;
  box-shadow: 0 0 70px rgba(254, 222, 66, 0.28);
  display: block;
}
.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26, 37, 102, 0.6), transparent);
  border-radius: 0 0 2.5rem 2.5rem;
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(254, 222, 66, 0.25);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.float-badge.navy {
  background: var(--navy);
  border-color: rgba(254, 222, 66, 0.3);
}
.float-badge.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.fbadge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fbadge-icon.navy {
  background: var(--navy);
  color: var(--yellow);
}
.fbadge-icon.yellow {
  background: var(--yellow);
  color: var(--navy);
}
.float-badge .fb-name {
  font-weight: 700;
  font-size: 13px;
}
.float-badge .fb-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.float-badge.navy .fb-name {
  color: #fff;
}
.float-badge.navy .fb-sub {
  color: var(--yellow);
}
.float-badge.yellow .fb-name {
  color: var(--navy);
}
.float-badge.yellow .fb-sub {
  color: rgba(26, 37, 102, 0.55);
}
.badge-tl {
  top: -24px;
  left: -24px;
}
.badge-rm {
  top: 33%;
  right: -28px;
}
.badge-bl {
  bottom: -24px;
  right: 0;
}
@keyframes f1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes f2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes f3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.badge-tl {
  animation: f1 3.2s ease-in-out infinite;
}
.badge-rm {
  animation: f3 2.8s ease-in-out infinite 1s;
}
.badge-bl {
  animation: f2 3.8s ease-in-out infinite 0.5s;
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(254, 222, 66, 0.18);
  border-bottom: 1px solid rgba(254, 222, 66, 0.18);
}
.marquee-inner {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.mq-item {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}
.mq-item.accent {
  color: var(--yellow);
}
.mq-item.dim {
  color: rgba(255, 255, 255, 1);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(254, 222, 66, 0.3);
}
.tl-item {
  position: relative;
  margin-bottom: 36px;
}
.tl-dot {
  position: absolute;
  left: -38px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(254, 222, 66, 0.3);
}
.tl-year {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 5px;
}

/* ── Quote block ── */
.quote-block {
  background: rgba(249, 239, 202, 0.5);
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
}

/* ── Skills cards ── */
.skill-card {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}
.skill-card.navy {
  background: var(--navy);
  color: #fff;
  position: relative;
}
.skill-card.navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(254, 222, 66, 0.07) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
}
.skill-card.white {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.skill-card.cream {
  background: linear-gradient(145deg, #fff 0%, rgba(249, 239, 202, 0.25) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.skill-top-bar {
  height: 5px;
}
.skill-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.skill-cat-icon.yellow-bg {
  background: var(--yellow);
  color: var(--navy);
}
.skill-cat-icon.navy-bg {
  background: var(--navy);
  color: var(--yellow);
}
.skill-cat-icon.grad-bg {
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
  color: #fff;
}
.skill-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.skill-num.dark {
  color: var(--yellow);
}
.skill-num.navy-txt {
  color: var(--yellow);
}
.skill-num.orange {
  color: #c2410c;
}
.skill-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.skill-item-row:last-child {
  border-bottom: none;
}
.ski-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ski-icon.dark-bg {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}
.ski-icon.yellow-bg {
  background: rgba(254, 222, 66, 0.12);
  border: 1px solid rgba(254, 222, 66, 0.6);
  color: var(--navy);
}
.ski-icon.amber-bg {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #d97706;
}
.ski-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}
.ski-sub {
  font-size: 12px;
  margin-top: 2px;
}
.ski-sub.white {
  color: rgba(255, 255, 255, 0.8);
}
.ski-sub.muted {
  color: var(--muted);
}
.ski-sub.amber {
  color: #92400e;
}
.skill-card-footer {
  background: linear-gradient(to right, #fffbeb, #fff5f5);
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 12px 16px;
  margin: 16px 0 0;
}
.skill-card-footer small {
  color: #92400e;
  font-weight: 700;
}

/* ── Credibility ── */
.cred-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(254, 222, 66, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
}
.cred-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: 0.3s;
}
.cred-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(254, 222, 66, 0.3);
}
.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(254, 222, 66, 0.15);
  border: 1px solid rgba(254, 222, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 20px;
  flex-shrink: 0;
}

/* ── Industries ── */
.ind-section {
  background: var(--navy);
}
.ind-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}
.ind-card:hover {
  transform: translateY(-6px);
}
.ind-header {
  padding: 22px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ind-jewellery {
  background: linear-gradient(135deg, #f59e0b, #ca8a04);
}
.ind-manufacturing {
  background: linear-gradient(135deg, #475569, #1e293b);
}
.ind-perfume {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.ind-fashion {
  background: linear-gradient(135deg, #fb7185, #f97316);
}
.ind-impact {
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 10px;
}

/* ── Why Partner ── */
.why-icon {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(254, 222, 66, 0.35);
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA blocks ── */
.cta-navy {
  background: var(--navy);
  border-radius: 2rem;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.cta-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(254, 222, 66, 0.07) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-cream {
  background: linear-gradient(135deg, rgba(249, 239, 202, 0.5) 0%, #fff 100%);
  border: 1px solid rgba(254, 222, 66, 0.28);
  border-radius: 2rem;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.cta-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(254, 222, 66, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  pointer-events: none;
}

/* ── Page hero ── */
.page-hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 239, 202, 0.45), #fff);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(254, 222, 66, 0.18) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  z-index: 0;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .glow-br {
  position: absolute;
  top: -80px;
  right: 0px;
  width: 380px;
  height: 380px;
  background: rgba(254, 222, 66, 0.08);
  border-radius: 50%;
  filter: blur(90px);
}

/* ── Service cards ── */
.svc-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.svc-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.svc-card.popular {
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 222, 66, 0.12);
}
.svc-top-bar {
  height: 5px;
}
.svc-popular-badge {
  position: absolute;
  top: 5px;
  right: 0;
  background: var(--navy);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0 0 0 10px;
}
.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.svc-ghost-num {
  position: absolute;
  bottom: -5px;
  right: 0px;
  font-size: 80px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.svc-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.svc-feature-item:last-child {
  border-bottom: none;
}
.svc-feat-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(254, 222, 66, 0.15);
  border: 1px solid rgba(254, 222, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--navy);
  flex-shrink: 0;
}
.svc-right-panel {
  background: linear-gradient(135deg, rgba(249, 239, 202, 0.35) 0%, #fff 100%);
  border-left: 1px solid #e8eaf0;
}

/* ── Portfolio ── */
.filter-btn {
  padding: 7px 16px;
  border-radius: 10px;
  border: none;
  background: none;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.proj-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  height: 100%;
}
.proj-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px);
}
.proj-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proj-thumb-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
}
.proj-cat-badge {
  background: var(--navy);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
}
.tag-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 7px;
}
.ind-card-body {
  background: rgba(255, 255, 255, 0.06);
}
.ind-desc {
  font-size: 13px;
  color: var(--navy);
}

/* ── Contact ── */
.contact-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 14px;



  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border: 2px solid var(--border);
}
.contact-cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}
.contact-cta-btn.whatsapp:hover {
  background: #1ebd5a;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}
.contact-cta-btn.email {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--border);
}
.contact-cta-btn:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--navy);
}
.ccta-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}


.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 13px;
  padding: 14px 16px;
  margin-bottom: 11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.info-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(254, 222, 66, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}
.form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
  border: 1px solid #e8eaf0;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--yellow),
    rgba(254, 222, 66, 0.4),
    transparent
  );
}
.form-control,
.form-control:focus {
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  font-size: 15px;
  color: var(--navy);
}
.form-control:focus {
  border-color: var(--yellow) !important;
  box-shadow: 0 0 0 3px rgba(254, 222, 66, 0.2) !important;
  background: #fff;
}
.form-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ── Footer ── */
.brand-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(254, 222, 66, 0.16), transparent 28%),
    linear-gradient(135deg, #17235f 0%, var(--navy) 100%);
}

/* ── Responsive tweaks ── */
@media (max-width: 991px) {
  .badge-rm {
    display: none;
  }
  .hero-photo-wrap {
    max-width: 320px;
    margin-top: 48px;
  }
  .badge-tl {
    left: -10px;
    top: -18px;
  }
  .badge-bl {
    right: 0;
    bottom: -18px;
  }
  .svc-right-panel {
    border-left: none !important;
    border-top: 1px solid #e8eaf0;
  }
  .cta-navy,
  .cta-cream {
    padding: 40px 28px;
  }
}
@media (max-width: 575px) {
  .stat-val {
    font-size: 2rem;
  }
  .hero-section {
    padding-top: 100px;
  }
}


/* Blog Section Styles - Add to style.css */
.blog-section {
  background: #fff;
}

.blog-post-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.blog-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-thumb-emoji {
  font-size: 3.5rem;
  z-index: 1;
}
.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.blog-post-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.blog-tag.yellow {
  background: var(--yellow);
  color: var(--navy);
}
.blog-tag.navy {
  background: var(--navy);
  color: #fff;
}
.blog-tag.cream {
  background: #fdf0d5;
  color: #92400e;
}

.blog-post-excerpt {
  color: #6b7280;
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-post-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 600;
}
.blog-post-meta .meta-left i {
  color: #d1d5db;
}
.read-more {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-post-card:hover .read-more {
  gap: 8px;
}

/* Featured post (large card) */
.blog-featured-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.blog-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  color: inherit;
}
.blog-featured-thumb {
  height: auto;

  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-featured-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 30% 40%,
    rgba(254, 222, 66, 0.12) 0%,
    transparent 60%
  );
}
.blog-featured-thumb .featured-emoji {
  font-size: 5rem;
  z-index: 1;
}

.blog-featured-thumb img{
  aspect-ratio: 16/9;
}
.blog-featured-body {
  padding: 1.6rem;
  background: #fff;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.blog-featured-title {
  font-weight: 900;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-section .blog-featured-title,
.blog-section .blog-featured-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-featured-excerpt {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
/* ── Hero ── */
.glow-hero-1 {
  width: 500px;
  height: 500px;
  top: -80px;
  left: -80px;
  background: rgba(254, 222, 66, 0.09);
}
.glow-hero-2 {
  width: 350px;
  height: 350px;
  bottom: -60px;
  right: 0;
  background: rgba(254, 222, 66, 0.07);
}
.hero-title {
  font-size: clamp(2.8rem, 3.6vw, 3.6rem);
  line-height: 1.05;
}
.hero-tagline {
  max-width: 520px;
  line-height: 1.7;
}
.stats-row-border {
  border-bottom: 1px solid var(--border);
}

/* ── Strategy authority section ── */
.strategy-section {
  background: linear-gradient(90deg, rgba(26, 37, 102, 0.045) 0 1px, transparent 1px), linear-gradient(180deg, rgb(254 222 66 / 7%), rgba(254, 222, 66, 0) 44%), radial-gradient(circle at 12% 5%, rgb(254 222 66 / 0%), transparent 30%), radial-gradient(circle at 92% 18%, rgba(26, 37, 102, 0.12), transparent 28%), linear-gradient(135deg, #fffdf3 0%, #fff 44%, #fff0a847 100%);
  background-size: 42px 42px, auto, auto, auto, auto;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(254, 222, 66, 0.3);
  border-bottom: 1px solid rgba(254, 222, 66, 0.22);
}
.strategy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(26, 37, 102, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.strategy-section::after {
  content: '';
  position: absolute;
  right: -14%;
  top: 12%;
  width: 42%;
  height: 58%;
  background: linear-gradient(135deg, rgba(254, 222, 66, 0.72), rgba(255, 255, 255, 0));
  border-radius: 48px;
  transform: rotate(-8deg);
  pointer-events: none;
}
.strategy-section .container {
  position: relative;
  z-index: 1;
}
.strategy-section .text-white,
.hidden-work-domains .text-white {
  color: var(--navy) !important;
}
.strategy-section .section-pill.light.accent,
.hidden-work-hero .section-pill.light.accent {
  background: rgba(254, 222, 66, 0.28);
  color: var(--navy);
  border-color: rgba(254, 222, 66, 0.62);
}
.strategy-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.strategy-glow-left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 18%;
  background: rgba(254, 222, 66, 0.28);
}
.strategy-glow-right {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: 5%;
  background: rgba(26, 37, 102, 0.08);
}
.strategy-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}
.strategy-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border: 1px solid rgba(254, 222, 66, 0.55);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 22px 60px rgba(26, 37, 102, 0.18);
  transition:
    transform 0.28s,
    border-color 0.28s,
    background 0.28s;
}
.strategy-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 222, 66, 0.78);
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
}
.strategy-highlight i {
  color: var(--navy);
  background: var(--yellow);
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}
.strategy-highlight p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.55;
}
.strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}
.strategy-panel {
  background: #fff;
  border: 1px solid rgba(254, 222, 66, 0.34);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 50px rgba(26, 37, 102, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s,
    border-color 0.28s,
    background 0.28s;
}
.strategy-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), rgba(254, 222, 66, 0.18));
}
.strategy-panel::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -90px;
  background: rgba(254, 222, 66, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.strategy-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 222, 66, 0.72);
  background: var(--yellow-wash);
}
.solution-panel {
  
  border-color: rgba(254, 222, 66, 0.62);
}
.strategy-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.strategy-panel h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.strategy-kicker {
  display: block;
  color: #9a6b00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.strategy-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--yellow);
  border: 1px solid rgba(26, 37, 102, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.strategy-list {
  display: grid;
  gap: 12px;
}
.strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(26, 37, 102, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.24s,
    border-color 0.24s,
    background 0.24s;
}
.strategy-item:hover {
  transform: translateX(4px);
  border-color: rgba(254, 222, 66, 0.6);
  background: #fff;
}
.strategy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(254, 222, 66, 0.25);
  margin-top: 5px;
  flex-shrink: 0;
}
.strategy-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.25;
}
.strategy-item small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}
.strategy-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  position: relative;
}
.strategy-bridge span {
  position: absolute;
  width: 1px;
  height: 74%;
  background: linear-gradient(transparent, rgba(26, 37, 102, 0.2), transparent);
}
.strategy-bridge i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--yellow);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px rgba(254, 222, 66, 0.34);
  z-index: 1;
}
.strategy-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 37, 102, 0.08);
  border-radius: 18px;
  background: rgba(254, 222, 66, 0.36);
}
.strategy-proof-row div {
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 16px;
  text-transform: uppercase;
}
.strategy-proof-row span {
  color: var(--gold);
  margin-right: 8px;
}

/* ── Hidden work / experience page ── */
.hidden-work-page {
  background: var(--yellow-wash);
  color: var(--navy);
}
.hidden-work-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: linear-gradient(90deg, rgba(26, 37, 102, 0.045) 0 1px, transparent 1px), radial-gradient(circle at 12% 5%, rgb(254 223 66 / 7%), transparent 32%), radial-gradient(circle at 88% 20%, rgba(26, 37, 102, 0.12), transparent 28%), linear-gradient(135deg, #fff6be40 0%, #fff 48%, rgb(254 222 66 / 4%) 100%);
  background-size: 42px 42px, auto, auto, auto;
  border-bottom: 1px solid rgba(254, 222, 66, 0.28);
}
.hidden-work-hero::before,
.hidden-work-domains::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 37, 102, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hidden-work-hero .container,
.hidden-work-domains .container {
  position: relative;
  z-index: 1;
}
.hidden-work-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hidden-work-glow-a {
  width: 360px;
  height: 360px;
  left: -100px;
  top: 20%;
  background: rgba(254, 222, 66, 0.34);
}
.hidden-work-glow-b {
  width: 460px;
  height: 460px;
  right: -160px;
  bottom: -80px;
  background: rgba(26, 37, 102, 0.08);
}
.hidden-work-title {
  max-width: 820px;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 0.98;
  color: var(--navy);
}
.hidden-work-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}
.hidden-work-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hidden-work-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 222, 66, 0.45);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.hidden-work-link:hover {
  color: #9a6b00;
}
.hidden-work-summary {
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 222, 66, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border: 1px solid rgba(254, 222, 66, 0.48);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 24px 70px rgba(26, 37, 102, 0.2);
  transition:
    transform 0.28s,
    border-color 0.28s,
    background 0.28s;
}
.hidden-work-summary:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 222, 66, 0.82);
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 222, 66, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
}
.hidden-work-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hidden-work-summary-top i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--yellow);
  border: 1px solid rgba(26, 37, 102, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.hidden-work-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
}
.hidden-work-metric span,
.hidden-work-note {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.hidden-work-note {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  background: rgba(254, 222, 66, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.hidden-work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.hidden-work-tags span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 800;
}
.hidden-work-domains {
  position: relative;
  overflow: hidden;
  linear-gradient(90deg, rgba(26, 37, 102, 0.035) 0 1px, transparent 1px), radial-gradient(circle at 86% 10%, rgb(254 222 66 / 7%), transparent 28%), linear-gradient(180deg, #fff 0%, #fff6c9 100%);
  background-size: 44px 44px, auto, auto;
}
.hidden-work-muted {
  color: var(--muted);
  line-height: 1.75;
  max-width: 780px;
}
.hidden-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hidden-domain-card {
  background: linear-gradient(145deg, #fff, #fffdf2);
  border: 1px solid rgba(254, 222, 66, 0.38);
  border-radius: 20px;
  padding: 22px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 48px rgba(26, 37, 102, 0.075);
  animation: hiddenWorkRise 0.7s ease both;
  animation-delay: var(--delay);
  transition:
    transform 0.28s,
    border-color 0.28s,
    background 0.28s;
}

.hidden-domain-card:nth-child(4n) {
  border-color: rgba(26, 37, 102, 0.12);
}
.hidden-domain-card:hover {
  transform: translateY(-7px);
  border-color: rgba(254, 222, 66, 0.78);
  background: linear-gradient(145deg, var(--yellow-soft), #fff);
}
.hidden-domain-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--yellow);
  border: 1px solid rgba(26, 37, 102, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.hidden-domain-card h3 {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}
@keyframes hiddenWorkRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden-work-confidential {
  background: #f7f4ef;
  color: var(--navy);
}
.hidden-confidential-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 239, 202, 0.32));
  border: 1px solid rgba(254, 222, 66, 0.3);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 22px 70px rgba(13, 27, 42, 0.09);
}
.hidden-confidential-label {
  display: block;
  color: #9a6b00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hidden-confidential-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.hidden-work-value {
  background: #fff;
  color: var(--navy);
}
.hidden-work-value-lead {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}
.hidden-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hidden-value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 34px rgba(13, 27, 42, 0.055);
  transition:
    transform 0.28s,
    box-shadow 0.28s,
    border-color 0.28s;
}
.hidden-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 222, 66, 0.55);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.09);
}
.hidden-value-card i {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.hidden-value-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 5px;
}
.hidden-value-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.9rem;
}

/* ── Photo card ── */
.photo-name {
  font-size: 1.1rem;
}
.photo-role {
  color: var(--yellow);
  font-size: 0.85rem;
}
.globe-icon {
  font-size: 18px;
  color: var(--navy);
}

/* ── Shared borders ── */
.border-top-brand {
  border-top: 1px solid var(--border);
}
.border-top-white-04 {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.border-top-white-05 {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Shared headings ── */
.h2-fluid {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.h2-fluid-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* ── About / Timeline ── */
.sticky-top-70 {
  position: sticky;
  top: 70px;
}
.blockquote-lh {
  line-height: 1.6;
}
.avail-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Skills section ── */
.skills-tagline {
  max-width: 600px;
}
.skill-desc-white {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}
.skill-desc-muted {
  font-size: 0.9rem;
  line-height: 1.65;
}
.hr-dark {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0 1.5rem;
}
.hr-light {
  border-color: var(--border);
  margin: 0 1.5rem;
}
.skill-num-navy {
  color: var(--navy);
  background: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.skill-num-amber {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c2410c;
  margin-bottom: 8px;
}
.skill-item-last {
  border-bottom: none;
}

/* ── Credibility ── */
.cred-body-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cred-role-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

/* ── Why section ── */
.why-num-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Testimonials ── */
.reviewer-name {
  font-size: 0.9rem;
}
.reviewer-role {
  font-size: 0.8rem;
}

/* ── Industries ── */
.ind-section-desc {
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
}

/* ── Final CTA ── */
.bg-cta-cream {
  background: rgba(249, 239, 202, 0.35);
}
.cta-desc {
  max-width: 700px;
}

/* ── Blog ── */
.blog-header-desc {
  max-width: 480px;
  font-size: 1rem;
}
.blog-meta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Footer ── */
.footer-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.footer-nav-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ── Page Hero ── */
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.text-yellow-force {
  color: var(--yellow) !important;
}
.hero-desc {
  max-width: 600px;
}

/* ── Section bg ── */
.bg-site-light {
  background: #f8fafc;
}

/* ── Divider row ── */
.divider-line {
  height: 1px;
  flex: 1;
  background: var(--border);
}
.divider-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ── Industry cards ── */
.ind-card-desc {
  font-size: 0.875rem;
}
.ind-icon-lg {
  font-size: 2.2rem;
  opacity: 0.9;
}

/* ── Archive header ── */
.archive-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
}

/* ── Project card tags ── */
.tag-row {
  border-top: 1px solid var(--border);
}
.proj-desc {
  font-size: 0.875rem;
}

/* ── Project thumbnails ── */
.proj-thumb-amber {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.25),
    rgba(234, 179, 8, 0.1)
  );
}
.proj-thumb-slate {
  background: linear-gradient(
    135deg,
    rgba(100, 116, 139, 0.25),
    rgba(148, 163, 184, 0.1)
  );
}
.proj-thumb-rose {
  background: linear-gradient(
    135deg,
    rgba(251, 113, 133, 0.25),
    rgba(249, 115, 22, 0.1)
  );
}
.proj-thumb-purple {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.25),
    rgba(236, 72, 153, 0.1)
  );
}
.proj-thumb-blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25),
    rgba(6, 182, 212, 0.1)
  );
}
.proj-thumb-emerald {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.25),
    rgba(20, 184, 166, 0.1)
  );
}

/* ── Project thumb icons ── */
.icon-amber {
  color: #d97706;
}
.icon-slate {
  color: #475569;
}
.icon-rose {
  color: #f43f5e;
}
.icon-purple {
  color: #a855f7;
}
.icon-blue {
  color: #3b82f6;
}
.icon-emerald {
  color: #10b981;
}

/* ── Bottom CTA ── */
.cta-desc-sm {
  max-width: 440px;
}


/* ── Page Hero ── */

/* ── Service card top bars ── */
.svc-top-bar-yellow {
  background: var(--yellow);
}
.svc-top-bar-default {
  background: linear-gradient(to right, #e2e8f0, #f8fafc);
}

/* ── Service card left panel backgrounds ── */
.svc-left-yellow {
  background: linear-gradient(
    135deg,
    rgba(254, 222, 66, 0.12) 0%,
    rgba(254, 222, 66, 0.03) 100%
  );
}
.svc-left-blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.07) 0%,
    rgba(59, 130, 246, 0.02) 100%
  );
}
.svc-left-emerald {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.07) 0%,
    rgba(16, 185, 129, 0.02) 100%
  );
}
.svc-left-slate {
  background: linear-gradient(
    135deg,
    rgba(100, 116, 139, 0.07) 0%,
    rgba(100, 116, 139, 0.02) 100%
  );
}
.svc-left-purple {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.07) 0%,
    rgba(139, 92, 246, 0.02) 100%
  );
}
.svc-left-rose {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.07) 0%,
    rgba(244, 63, 94, 0.02) 100%
  );
}

/* ── "What's Included" label (repeated in every card) ── */
.svc-included-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ── Bottom CTA ── */
.cta-row {
  z-index: 1;
}
.cta-engagement-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.cta-body-text {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Footer ── */

/* ── Page Hero ── */

.text-yellow-var {
  color: var(--yellow);
}
.hero-desc-contact {
  max-width: 540px;
}

/* ── Contact section ── */
.bg-contact-section {
  background: rgba(249, 239, 202, 0.25);
}
.contact-row {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Contact CTA button icons ── */
.ccta-icon-white {
  background: rgba(255, 255, 255, 0.25);
}
.ccta-icon-navy {
  background: var(--navy);
}
.ccta-icon-yellow {
  color: var(--yellow);
  font-size: 20px;
}
.ccta-icon-yellow-force {
  color: var(--yellow) !important;
  font-size: 20px;
}

/* ── Contact CTA sub-text (used 6 times) ── */
.ccta-sub {
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── Contact form card ── */
.form-desc {
  font-size: 0.9rem;
}
.form-footer-note {
  font-size: 0.82rem;
}
.success-box {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ── Footer ── */

/* NAV */
.brand-navbar {
  background: rgba(255, 251, 234, 0.92);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
    backdrop-filter: blur(14px);
}

.aj-badge {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.btn-brand {
  background: var(--yellow);
  color: var(--navy);
  border: 1px solid var(--yellow);
  font-weight: 800;
  border-radius: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(254, 222, 66, 0.3);
  color: var(--navy);
  border: 1px solid var(--yellow);
  background: #fff !important;
}



/* HERO */

/* LAYOUT */
.art-layout {
  background: #f7f4ef;
  padding: 4rem 0 5rem;
}
/* .art-layout img{
  aspect-ratio: 16:9;
} */
/* ARTICLE */
.art-body {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(13, 27, 42, 0.06);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.85;
  color: #2d3748;
}
.art-body .drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--navy);
  float: left;
  line-height: 0.75;
  margin: 0 0.12em -0.1em 0;
  padding-top: 0.08em;
}
.art-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 3rem 0 1rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.art-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.art-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.015em;
}
.art-body p {
  margin-bottom: 1.4rem;
}
.art-body strong {
  color: var(--navy);
  font-weight: 700;
}
.art-body ul,
.art-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.art-body li {
  margin-bottom: 0.6rem;
}

.pull-quote {
  margin: 2.5rem -1.5rem;
  padding: 2rem 2.5rem;
  border-left: 5px solid var(--yellow);
  background: linear-gradient(135deg, #fdf8ef, rgba(254, 222, 66, 0.08));
  border-radius: 0 14px 14px 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.tip-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  margin: 2.2rem 0;
}
.tip-box .tbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tip-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.mistake-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}
.mrow {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.mrow:hover {
  border-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(254, 222, 66, 0.12);
  transform: translateX(4px);
}
.mnum {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
}
.mt {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.md {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.tag {
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(13, 27, 42, 0.05);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.tag:hover {
  background: var(--navy);
  color: #fff;
}

/* SIDEBAR */
.sb-sticky {
  position: sticky;
  top: 90px;
}
.sb-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.sb-ttl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sb-ttl i {
  color: var(--yellow);
}
.toc-a {
  display: block;
  padding: 0.45rem 0 0.45rem 12px;
  border-left: 2px solid transparent;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  line-height: 1.4;
}
.toc-a:hover,
.toc-a.active {
  color: var(--navy);
  border-left-color: var(--yellow);
}

.sb-author {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.sba-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.sba-name {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.sba-role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}
.sba-bio {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
  .strategy-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strategy-bridge {
    min-height: 46px;
  }
  .strategy-bridge span {
    width: 74%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 222, 66, 0.35), transparent);
  }
  .strategy-bridge i {
    transform: rotate(90deg);
  }
  .strategy-proof-row {
    grid-template-columns: 1fr 1fr;
  }
  .strategy-panel-head {
    align-items: center;
  }
  .hidden-work-hero {
    padding: 4rem 0;
  }
  .hidden-domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hidden-value-grid {
    grid-template-columns: 1fr;
  }
  .hidden-work-summary {
    border-radius: 22px;
  }
  .hidden-confidential-card {
    border-radius: 22px;
  }
  .art-body {
    padding: 2rem 1.5rem;
  }
  .pull-quote {
    margin: 2rem 0;
  }
}

@media (max-width: 575px) {
  .strategy-highlight,
  .strategy-panel {
    border-radius: 18px;
  }
  .strategy-panel {
    padding: 20px;
  }
  .strategy-head-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .strategy-item {
    padding: 13px;
  }
  .strategy-proof-row {
    grid-template-columns: 1fr;
  }
  .strategy-proof-row div {
    padding: 14px;
  }
  .hidden-work-title {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }
  .hidden-work-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hidden-work-hero-actions .btn {
    width: 100%;
  }
  .hidden-work-link {
    align-self: flex-start;
  }
  .hidden-domain-grid {
    grid-template-columns: 1fr;
  }
  .hidden-domain-card {
    min-height: 126px;
    padding: 20px;
  }
  .hidden-value-card {
    padding: 18px;
  }
}

/* ─── BLOG SIDEBAR CARD TEXT ─── */

.recent-blog-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.recent-blog-date {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ─── HIGHLIGHTED MISTAKE ROW ─── */

.mrow-highlight {
  border-color: rgba(254, 222, 66, 0.5);
}

/* ─── TAG LABEL ─── */

.tag-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: center;
}

/* ─── AUTHOR CTA BUTTON ─── */

.author-btn {
  font-size: 0.82rem;
  font-weight: 800;
}
.aspect-ratio-16-9{
  aspect-ratio: 16 / 9;
}
