/* ============================================================
   WHO WE SERVE — wws.css
   Extends main.css variables (--indigo, --midnight, --gold etc.)
   ============================================================ */

/* ── PAGE HERO ── */
.wws-hero {
  background: var(--midnight);
  padding: 100px 64px 72px;
  position: relative;
  overflow: hidden;
}

.wws-hero-inner { position: relative; z-index: 2; max-width: 800px; }

.wws-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.wws-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.wws-breadcrumb a:hover { color: #FFBB4E; }
.wws-breadcrumb span:last-child { color: rgba(255,255,255,0.6); }

.wws-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #FFBB4E; margin-bottom: 18px;
}
.wws-ey-line { width: 28px; height: 1.5px; background: #FFBB4E; }

.wws-hero-h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(38px, 4vw, 61px);
  font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px;
}
.wws-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 560px;
}

/* ── SHARED SECTION ── */
.wws-section { padding: 72px 64px; background: #fff; }
.wws-section-alt { background: #F7F8FC; }
/* .wws-section-inner { max-width: 1200px; margin: 0 auto; } */

.wws-sec-ey {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #6617FF; margin-bottom: 8px;
}
.wws-sec-h {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700; color: #0D1B4B;
  letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 10px;
}
.wws-sec-intro {
  font-size: 0.9rem; color: #3D4A6B;
  line-height: 1.8; margin-bottom: 44px;
}

/* ══════════════════════════════════════════
   INDUSTRY TILES
══════════════════════════════════════════ */
.ind-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ind-tile {
  background: #F7F8FC;
  border: 1.5px solid #E2E6F0;
  border-radius: 10px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.ind-tile:hover {
  background: #0D1B4B;
  border-color: #0D1B4B;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(13,27,75,0.2);
}
.ind-tile:focus { outline: 2px solid #6617FF; outline-offset: 2px; }

.ind-tile-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #6617FF; transition: color 0.22s;
}
.ind-tile:hover .ind-tile-tag { color: #FFBB4E; }

.ind-tile-name {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: #0A0A56; line-height: 1.3; transition: color 0.22s;
}
.ind-tile:hover .ind-tile-name { color: #fff; }

.ind-tile-arrow {
  font-size: 0.78rem; color: var(--midnight);
  margin-top: 8px;
}
.ind-tile:hover .ind-tile-arrow { color: #FFBB4E; }

/* ══════════════════════════════════════════
   INDUSTRY MODAL — single dynamic modal
══════════════════════════════════════════ */
.ind-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,75,0.55);
  backdrop-filter: blur(5px);
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.ind-overlay.active { opacity: 1; pointer-events: all; }

.ind-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(860px, 90vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(13,27,75,0.25), 0 0 0 1px rgba(13,27,75,0.07);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.ind-modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Left — image / colour panel */
.ind-modal-left {
  position: relative; overflow: hidden; min-height: 380px;
}
.ind-modal-bg {
  position: absolute; inset: 0;
  transition: background 0.3s ease;
}
.ind-modal-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, transparent 100%),
    radial-gradient(circle at 30% 50%, rgba(255,187,78,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102,23,255,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.ind-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12); border: none;
  border-radius: 50%; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; z-index: 10;
}
.ind-modal-close:hover { background: rgba(255,255,255,0.22); }

.ind-modal-img-body {
  position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 5;
}
.ind-modal-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #FFBB4E;
  border: 1px solid rgba(255,187,78,0.4);
  border-radius: 100px; padding: 4px 12px; margin-bottom: 12px;
}
.ind-modal-title {
  font-family: 'Archivo', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ind-modal-intro {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; font-style: italic;
}

/* Right — content panel */
.ind-modal-right {
  padding: 32px 32px;
  overflow-y: auto;
  max-height: 90vh;
}
.ind-modal-body {
  font-size: 0.82rem; color: #3D4A6B;
  line-height: 1.82; margin-bottom: 22px;
}
.ind-modal-challenges-h {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: #0D1B4B; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.ind-modal-challenge {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 7px;
}
.ind-modal-challenge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #6617FF; margin-top: 7px; flex-shrink: 0;
}
.ind-modal-challenge span { font-size: 0.78rem; color: #3D4A6B; line-height: 1.6; }

.ind-modal-services {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid #E2E6F0;
}
.ind-modal-services-h {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #6617FF; margin-bottom: 10px;
}
.ind-modal-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-modal-svc-tag {
  font-size: 0.72rem;
  background: #F0EAFF; color: #6617FF;
  border: 1px solid rgba(102,23,255,0.15);
  border-radius: 100px; padding: 4px 12px; font-weight: 500;
}
a.ind-modal-svc-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
a.ind-modal-svc-link:hover {
  background: #6617FF;
  color: #fff;
  border-color: #6617FF;
}

.ind-modal-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.78rem; font-weight: 600;
  color: #6617FF; cursor: pointer;
  text-decoration: none; transition: gap 0.15s;
  background: none; border: none; padding: 0;
}
.ind-modal-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════
   CLIENT GROUPS
══════════════════════════════════════════ */
.cg-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1.5px solid #E2E6F0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(13,27,75,0.06);
}

/* Left tiles */
.cg-tiles { border-right: 1.5px solid #E2E6F0; }
.cg-tile {
  padding: 20px 26px;
  border-bottom: 1px solid #E2E6F0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  display: flex; flex-direction: column; gap: 3px;
}
.cg-tile:last-child { border-bottom: none; }
.cg-tile::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; transition: background 0.2s;
}
.cg-tile:hover::before, .cg-tile.active::before { background: #6617FF; }
.cg-tile:hover, .cg-tile.active { background: #EEF1FA; }

.cg-tile-tag {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #6617FF;
}
.cg-tile-name {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: #0D1B4B; line-height: 1.3; transition: color 0.2s;
}
.cg-tile:hover .cg-tile-name, .cg-tile.active .cg-tile-name { color: #0D1B4B; }
.cg-tile-hint { font-size: 0.72rem; color: #9AA3BF; line-height: 1.4; }

/* Right panels */

/* ── Default state — visible before any tile click ── */
.cg-default {
  display: block;         /* visible on page load */
  height: 100%;
}
.cg-default.hidden {
  display: none;          /* hides once a tile is clicked */
}

.cg-default-img {
  position: relative;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, #0D1B4B 0%, #162260 50%, #0A0A56 100%);
  overflow: hidden;
}

.cg-default-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3; width: 80%;
}

.cg-default-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Animated arrow hint pointing left toward tiles */
.cg-default-text::after {
  content: '← Select a group';
  display: block;
  margin-top: 24px;
  font-size: 0.72rem;
  color: rgba(255,187,78,0.55);
  letter-spacing: 0.06em;
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50%       { opacity: 1;   transform: translateX(-5px); }
}

/* panels hidden until clicked */
.cg-panels { position: relative; overflow: hidden; }
.cg-panel { display: none; grid-template-rows: auto 1fr; }
.cg-panel.active { display: grid; }

/* Image — always visible */
.cg-panel-img {
  position: relative; overflow: hidden;
  background-color: #0D1B4B; height:350px;
}
.cg-panel-img-bg {
  display: block; width: 100%; height: auto;
}
.cg-panel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,75,0.65) 0%, rgba(13,27,75,0.15) 60%, transparent 100%);
}

.cg-panel-img-text {
  position: absolute; bottom: 24px; left: 28px; right: 28px; z-index: 3;
}
.cg-panel-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #FFBB4E;
  border: 1px solid rgba(255,187,78,0.35); border-radius: 100px;
  padding: 3px 10px; margin-bottom: 8px;
}
.cg-panel-img-title {
  font-family: 'Archivo', sans-serif;
  font-size: 21px; font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.01em;
}

.cg-panel-content { padding: 26px 32px; overflow-y: auto; }
.cg-panel-body {
  font-size: 0.88rem; color: #3D4A6B;
  line-height: 1.45; margin-bottom: 18px;
}
.cg-helps-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #6617FF; margin-bottom: 10px;
}
.cg-helps-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.cg-help-item {
  font-size: 0.75rem; background: #F0EAFF;
  color: #162260; border: 1px solid rgba(13,27,75,0.08);
  border-radius: 100px; padding: 5px 13px; font-weight: 500;
}
.cg-panel-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: #6617FF;
  text-decoration: none; transition: gap 0.15s; border: none;
  background: none; padding: 0; cursor: pointer;
}
.cg-panel-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════
   TESTIMONIALS — matches homepage colours
══════════════════════════════════════════ */
.wws-testi {
  background: #0A0A56;
  padding: 80px 0;
  position: relative; overflow: hidden;
}


.wws-testi-inner { position: relative; z-index: 2; }

.wws-testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 64px; margin-bottom: 44px; gap: 20px; flex-wrap: wrap;
}
.wws-testi-ey {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,187,78,0.75); margin-bottom: 8px;
}
.wws-testi-h {
  font-family: 'Archivo', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0;
}
.wws-testi-controls { display: flex; align-items: center; gap: 12px; }
.wws-testi-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.wws-testi-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35); color: #fff;
}
.wws-testi-counter {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  font-family: 'Archivo', sans-serif; min-width: 40px; text-align: center;
}

.wws-testi-track-wrap { overflow: hidden; padding: 0 64px; }
.wws-testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.wws-testi-slide { min-width: 100%; }

.wws-testi-card {
  background: #FFFFFF;;
  /* border: 1px solid rgba(255,255,255,0.09); */
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 240px; margin-right: 25px;
}
.wws-testi-logo-col {
    box-shadow: 9px 0 16px -6px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 28px;
    gap: 25px;
    position: relative;
    /* border-right: 5px solid;
    border-image: linear-gradient(to bottom, #6617FF, #FFBB4E) 1;
    border-image-slice: 1; */
}

.wws-testi-logo-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}


.wws-testi-logo img{height: 50px; object-fit: contain;}
/* .wws-testi-name {
  font-family: 'Archivo', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--midnight);
  text-align: end; line-height: 1.3;
}
.wws-testi-role {
  font-size: 0.89rem; color: var(--midnight);
  text-align: end; margin-top: 3px; line-height: 1.4;
}
.wws-testi-company{ font-size: 0.89rem;font-weight: 500; color: var(--indigo);margin-top:3px; text-align: end;} */

.wws-testi-quote-col {
  padding: 14px 44px;
  display: flex; flex-direction: column; 
}

/* .designation{   margin-top: auto;      
  text-align: right;   
  align-self: flex-end; 
  width: 100%;} */
.wws-testi-mark {font-size: 72px;
    color: #F4C21D;
    line-height: 1;display: inline-block;
transform: translateY(10px);
}
.wws-testi-quote {
  font-size: 0.99rem; color: var(--charcoal);
  line-height: 1.85; font-style: italic; 
}

.wws-testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.wws-testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer; transition: all 0.25s;
  border: none; padding: 0;
}
.wws-testi-dot.active {
  background: #FFBB4E; width: 24px; border-radius: 3px;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.wws-cta-band {
  background: #6617ff;
  padding: 56px 64px;
  position: relative; overflow: hidden;
}

.wws-cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.wws-cta-h {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px;
}
.wws-cta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.wws-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #FFBB4E;
  color: #0A0A56; font-family: 'Archivo', sans-serif;
  font-size: 0.88rem; font-weight: 700; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.25s; flex-shrink: 0;
}
.wws-cta-btn:hover {
  background: var(--midnight);
  color: #FFF;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ind-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .wws-hero { padding: 70px 24px 52px; }
  .wws-section { padding-left: 24px; padding-right: 24px; }
  .wws-cta-band { padding: 40px 24px; }
  .wws-cta-inner { flex-direction: column; gap: 20px; text-align: center; }
  .ind-tiles { grid-template-columns: repeat(2, 1fr); }
  .cg-wrap { display: block; }
  .cg-tiles { border-right: none; }
  .cg-panels { display: none; }
  .cg-panel.active { display: block; }
  .cg-panel-img { display: none; }
  .cg-panel-content { padding: 16px 20px; background: #F7F8FC; border-bottom: 1.5px solid #E2E6F0; }
  .wws-testi-header, .wws-testi-track-wrap { padding-left: 24px; padding-right: 24px; }
  .wws-testi-card { grid-template-columns: 1fr; }
  .wws-testi-logo-col {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 24px; flex-direction: row; justify-content: flex-start; gap: 16px;
  }
  /* Client group default panel */
  .cg-default-img { min-height: 280px; }
}
@media (max-width: 600px) {
  .ind-tiles { grid-template-columns: 1fr 1fr; }
  .ind-modal { grid-template-columns: 1fr; max-height: 85vh; overflow-y: auto; }
  .ind-modal-left { min-height: 200px; }
  .wws-testi-quote-col { padding: 24px 16px; }
  .wws-testi-quote { font-size: 0.88rem; }
  .wws-testi-mark { font-size: 52px; }
}
@media (max-width: 400px) {
  .ind-tiles { grid-template-columns: 1fr; }
}
