/* =============================================
   CITY ASSOCIATES INDIA — MAIN STYLESHEET
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --navy: #08122B;
  --navy-mid: #0D1E42;
  --navy-light: #152C63;
  --gold: #C5A059;
  --gold-light: #D4B475;
  --gold-dark: #A38043;
  --white: #ffffff;
  --off-white: #FDFBF7;
  --light-bg: #F4F5F7;
  --text-dark: #111827;
  --text-body: #4B5563;
  --text-muted: #9CA3AF;
  --text-light: #D1D5DB;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(8, 18, 43, 0.06);
  --shadow-md: 0 8px 30px rgba(8, 18, 43, 0.1);
  --shadow-lg: 0 20px 60px rgba(8, 18, 43, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center !important; }
.gold { color: var(--gold) !important; }
.gold-text { color: var(--gold); }
.light { color: var(--white) !important; }

/* ---- Page System ---- */
.page { display: none; }
.page.active { display: block; }

/* ======================================
   NAVBAR
====================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 18, 43, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 18, 43, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ---- Horizontal Navbar Logo ---- */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* Emblem container (left) */
.nav-emblem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-emblem-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-emblem-svg {
  display: flex;
  align-items: center;
}

/* Brand text (right of emblem) */
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1.2;
}

.nav-brand-india {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 2px;
}

.nav-india-dash {
  font-size: 0.55rem;
  color: var(--gold);
  line-height: 1;
}

.nav-india-word {
  font-family: 'Playfair Display', serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-brand-tagline {
  font-size: 0.42rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-top: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}



.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.logo-sub { font-size: 0.6rem; font-weight: 500; color: var(--gold); letter-spacing: 2.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.3px;
  transition: var(--transition) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197,160,89,0.4) !important;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius-sm);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(197,160,89,0.06); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dark hamburger for light navbar */
.hamburger-dark span { background: var(--navy); }

/* ======================================
   WHITE / LIGHT NAVBAR VARIANT
====================================== */
.navbar-light {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 18, 43, 0.1) !important;
  box-shadow: 0 2px 12px rgba(8, 18, 43, 0.08);
}

.navbar-light.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 20px rgba(8, 18, 43, 0.12) !important;
}

/* Light navbar logo text */
.logo-icon-light {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text-light {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name-light {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
}

.logo-sub-light {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  margin-top: 1px;
}

.logo-tagline-light {
  font-size: 0.48rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 1px;
  text-transform: uppercase;
}

/* Light nav links */
.nav-link-light {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-link-light:hover {
  color: var(--gold-dark);
}

.nav-link-light.active {
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  padding-bottom: 0.35rem;
}

/* Dark CTA button for light navbar */
.nav-cta-dark {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 6px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.3px;
  transition: var(--transition) !important;
  margin-left: 0.5rem;
}

.nav-cta-dark:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8, 18, 43, 0.3) !important;
}

/* Light navbar dropdown */
.dropdown-light {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 8px 32px rgba(8, 18, 43, 0.12) !important;
}

.dropdown-light a {
  color: var(--text-dark) !important;
}

.dropdown-light a:hover {
  color: var(--gold-dark) !important;
  background: rgba(197, 160, 89, 0.06) !important;
}

/* ======================================
   HERO SPLIT LAYOUT (Home Page)
====================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px; /* navbar height */
}

/* Left text panel */
.hero-split-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(197,160,89,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(21,44,99,0.8) 0%, transparent 50%);
  pointer-events: none;
}

.hero-split-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  pointer-events: none;
}

.hero-split-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-split-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero-gold {
  color: var(--gold);
}

.hero-split-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-split-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-hero-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197, 160, 89, 0.4);
}

/* ======================================
   HERO SERVICE MINI CHIPS
====================================== */
.hero-services-row {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0 2rem;
  flex-wrap: wrap;
}

.hero-service-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  min-width: 72px;
  text-align: center;
}

.hero-service-chip:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.hero-chip-icon {
  width: 36px;
  height: 36px;
  background: rgba(197, 160, 89, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chip-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.hero-service-chip span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
  white-space: nowrap;
}





.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Right image panel */
.hero-split-right {
  position: relative;
  overflow: hidden;
}

.hero-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.hero-split-right:hover .hero-split-img {
  transform: scale(1.04);
}

.hero-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 18, 43, 0.35) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* Service highlights strip below hero - update for cleaner look */
.home-services-strip {
  background: var(--white);
  border-top: 4px solid var(--gold);
}

.home-services-strip .services-grid.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.home-services-strip .service-card {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.home-services-strip .service-card:last-child {
  border-right: none;
}

.home-services-strip .service-icon {
  margin: 0 auto 1.25rem;
}

/* ======================================
   BUTTONS
====================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary.small { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,160,89,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-sm {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-sm:hover { background: var(--navy); color: var(--white); }

/* ======================================
   HERO SECTION
====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #08122B 0%, #152C63 40%, #08122B 100%);
  z-index: 0;
}

/* Animated mesh background */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(197,160,89,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(197,160,89,0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(21,44,99,0.6) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.01) 60px, rgba(255,255,255,0.01) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.01) 60px, rgba(255,255,255,0.01) 61px);
}

@keyframes heroGlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay { position: absolute; inset: 0; background: rgba(8,18,43,0.3); z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.hero-text { max-width: 680px; }

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tag-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.5; }
}

/* ======================================
   PAGE HERO (inner pages)
====================================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(21,44,99,0.85) 100%);
}

.about-hero-bg { background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(21,44,99,0.85) 100%); }
.services-hero-bg { background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(8,18,43,0.9) 100%); }
.industries-hero-bg { background: linear-gradient(135deg, rgba(21,44,99,0.85) 0%, rgba(8,18,43,0.85) 100%); }
.insights-hero-bg { background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(8,18,43,0.9) 100%); }
.team-hero-bg { background: linear-gradient(135deg, rgba(13,30,66,0.85) 0%, rgba(8,18,43,0.85) 100%); }
.careers-hero-bg { background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(21,44,99,0.85) 100%); }
.contact-hero-bg { background: linear-gradient(135deg, rgba(8,18,43,0.85) 0%, rgba(8,18,43,0.9) 100%); }

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(197,160,89,0.1) 0%, transparent 60%);
}

.page-hero-overlay { position: absolute; inset: 0; background: rgba(8,18,43,0.2); }

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.breadcrumb {
  display: none;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto;
}

/* ======================================
   SECTIONS
====================================== */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--light-bg); }
.section-navy { background: var(--navy); }

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gold-label { color: var(--gold); }

.section-header.two-col {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.section-sub.light { color: rgba(255,255,255,0.7); }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.body-text {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ======================================
   SERVICES GRID (Home)
====================================== */
.services-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.services-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(197,160,89,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(197,160,89,0.1), rgba(197,160,89,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.learn-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.learn-more:hover { color: var(--gold); gap: 0.5rem; }

/* ======================================
   ABOUT PREVIEW
====================================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* Image placeholders */
.img-placeholder {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 30%, rgba(197,160,89,0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(8,18,43,0.8) 0%, rgba(21,44,99,0.6) 100%);
}

.img-placeholder.tall { min-height: 480px; }

.img-placeholder.corporate::after {
  content: '🏢';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.15;
}

.img-overlay-text {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}
.img-overlay-text span { color: var(--gold); font-size: 0.85rem; font-weight: 400; font-family: 'Inter', sans-serif; }

/* ======================================
   INDUSTRIES STRIP (Home)
====================================== */
.industries-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.industry-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ======================================
   INSIGHTS GRID (Home)
====================================== */
.insights-grid.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }

.insight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.insight-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}

.insight-img-1 { background: linear-gradient(135deg, #08122B 0%, var(--navy-light) 100%); }
.insight-img-1::after { content: '📊'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-img-2 { background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-light) 50%, var(--navy-light) 100%); }
.insight-img-2::after { content: '📈'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-img-3 { background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--navy) 100%); }
.insight-img-3::after { content: '🛡️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-img-4 { background: linear-gradient(135deg, #08122B 0%, var(--navy-light) 100%); }
.insight-img-4::after { content: '⚖️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-img-5 { background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%); }
.insight-img-5::after { content: '💻'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-img-6 { background: linear-gradient(135deg, var(--navy) 0%, #08122B 100%); }
.insight-img-6::after { content: '🏗️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.3; }

.insight-body { padding: 1.5rem; }

.insight-tag {
  display: inline-block;
  background: rgba(197,160,89,0.12);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.insight-date { font-size: 0.78rem; color: var(--text-light); margin-left: 0.75rem; }

.insight-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0.75rem 0 1rem;
}

/* ======================================
   CTA BANNER
====================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(197,160,89,0.12) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ======================================
   VALUES GRID
====================================== */
.values-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.values-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(8, 18, 43, 0.12);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.value-card:hover .value-icon svg {
  stroke: var(--navy);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  transition: stroke 0.4s ease;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

/* Mission Vision */
.mission-vision-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197,160,89,0.2);
}

.mv-card {
  flex: 1;
  padding: 3rem;
  text-align: center;
}

.mv-divider {
  width: 1px;
  background: rgba(197,160,89,0.2);
  flex-shrink: 0;
}

.mv-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mv-card p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; }

/* About image floating badge */
.about-img-wrap { position: relative; }

.floating-badge {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }

/* ======================================
   SERVICES DETAIL PAGE
====================================== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(197,160,89,0.3);
}

.sdc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sdc-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}

.service-detail-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ======================================
   INDUSTRIES DETAIL PAGE
====================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.ind-financial { background: linear-gradient(135deg, #08122B, var(--navy-light)); }
.ind-financial::after { content: '🏦'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-manufacturing { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-manufacturing::after { content: '⚙️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-healthcare { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-healthcare::after { content: '🏥'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-technology { background: linear-gradient(135deg, #08122B, var(--navy)); }
.ind-technology::after { content: '💻'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-retail { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-retail::after { content: '🛒'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-energy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-energy::after { content: '⚡'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-education { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-education::after { content: '🎓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.ind-infrastructure { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.ind-infrastructure::after { content: '🏗️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

.industry-card-body { padding: 1.5rem; position: relative; }

.industry-card-icon {
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.industry-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}

.industry-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ======================================
   INSIGHTS PAGE
====================================== */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.insights-grid-large {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-full-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.insight-full-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.insight-full-card.hidden { display: none; }

.ifc-img {
  min-height: 180px;
}

.ifc-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ifc-meta { margin-bottom: 0.75rem; }

.ifc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.ifc-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.load-more-wrap { text-align: center; margin-top: 2.5rem; }

/* ======================================
   TEAM PAGE
====================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--border);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  cursor: pointer;
}

.team-photo-1::after { content: '👨‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-2::after { content: '👩‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-3::after { content: '👨‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-4::after { content: '👩‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-5::after { content: '👨‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-6::after { content: '👩‍💼'; font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,18,43,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.team-photo:hover .team-overlay { opacity: 1; }

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
}

.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.team-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ======================================
   CAREERS PAGE
====================================== */
.why-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.why-grid.six-col { grid-template-columns: repeat(6, 1fr); }

.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(197,160,89,0.3); }

.why-icon { font-size: 2rem; margin-bottom: 0.875rem; }

.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Positions */
.positions-table {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.position-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.position-row:last-of-type { border-bottom: none; }
.position-row:hover { background: var(--light-bg); }

.position-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.position-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  transition: var(--transition);
  transform: rotate(0deg);
}

.position-row.open .position-arrow { transform: rotate(90deg); }

.position-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.position-meta { font-size: 0.8rem; color: var(--text-muted); }

.position-detail {
  display: none;
  padding: 1.5rem 1.75rem 1.75rem 4rem;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.position-detail.open { display: block; }

.position-detail p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* Careers CTA block */
.careers-cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.careers-cta-img {
  height: 280px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(197,160,89,0.15), rgba(197,160,89,0.05));
  border: 1px solid rgba(197,160,89,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.careers-cta-img::after { content: '🤝'; }

.careers-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.careers-cta-text p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.7; }

/* ======================================
   CONTACT PAGE
====================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info-panel h3,
.contact-form-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--gold);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.contact-item p, .contact-item a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--gold-dark); }

.office-map { margin: 2rem 0; }

.office-map h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}

.map-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.map-inner { text-align: center; color: var(--white); }
.map-marker { font-size: 2rem; margin-bottom: 0.5rem; }
.map-inner p { font-size: 0.8rem; opacity: 0.7; line-height: 1.4; }

.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cf-item {
  text-align: center;
  padding: 0.875rem 0.5rem;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.cf-item span { font-size: 1.25rem; display: block; margin-bottom: 0.35rem; }
.cf-item p { font-size: 0.72rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* Contact Form */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ======================================
   FOOTER
====================================== */
.footer { 
  background: var(--white); 
  border-top: 1px solid var(--border); 
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('world-map-footer.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5; /* Made it darker so it's clearly visible */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  /* Fade out the map on the left side so it doesn't touch the logo at all */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 28%, black 45%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 28%, black 45%, black 100%);
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-top { padding: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logo-icon-sm {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: 1.5px; }
.footer-logo-sub { font-size: 0.55rem; font-weight: 500; color: var(--gold); letter-spacing: 2.5px; }

.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; font-style: italic; }

.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy); }

.footer-links-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links-col ul li a:hover { color: var(--gold); }

.footer-social-large { display: flex; flex-direction: column; gap: 0.4rem; }
.social-link-lg { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.social-link-lg:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1100px) {
  .services-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .values-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid.six-col { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 1rem; gap: 0.25rem; border-top: 1px solid rgba(197,160,89,0.15); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); }
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-grid.reverse { direction: ltr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .section-header.two-col { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .careers-cta-block { grid-template-columns: 1fr; }
  .insight-full-card { grid-template-columns: 1fr; }
  .ifc-img { height: 200px; }
  .mission-vision-grid { flex-direction: column; }
  .mv-divider { width: 100%; height: 1px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 60px 0; }
  .hero-heading { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .services-grid.four-col { grid-template-columns: 1fr; }
  .values-grid.four-col { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .why-grid.six-col { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-features { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-direction: column; gap: 1rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ======================================
   RESPONSIVE — SPLIT HERO & LIGHT NAV
====================================== */
@media (max-width: 1100px) {
  .hero-split-left { padding: 4rem 2.5rem 4rem 3rem; }
}

@media (max-width: 900px) {
  /* Split hero stacks vertically */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-left {
    padding: 6rem 2rem 4rem;
    min-height: 60vh;
  }
  .hero-split-right {
    min-height: 45vw;
    max-height: 480px;
  }
  .hero-split-content { max-width: 100%; }
  .hero-split-heading { font-size: clamp(2rem, 6vw, 3rem); }

  /* White navbar mobile */
  .navbar-light .nav-links {
    background: var(--white) !important;
    border-top: 1px solid var(--border) !important;
  }
  .navbar-light .nav-links .nav-link-light {
    color: var(--text-dark);
    padding: 0.75rem 1rem;
  }
  .navbar-light .nav-links .nav-link-light.active {
    color: var(--gold-dark);
    border-bottom: none;
    border-left: 3px solid var(--gold);
  }
  .navbar-light .dropdown-menu {
    background: var(--off-white) !important;
  }

  /* Home services strip responsive */
  .home-services-strip .services-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services-strip .service-card:nth-child(2) {
    border-right: none;
  }
  .home-services-strip .service-card:nth-child(3) {
    border-top: 1px solid var(--border);
  }
  .home-services-strip .service-card:last-child {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 520px) {
  .hero-split-left { padding: 5rem 1.5rem 3rem; }
  .hero-split-btns { flex-direction: column; }
  .btn-hero-gold, .btn-hero-outline { text-align: center; justify-content: center; }
  .home-services-strip .services-grid.four-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ======================================
   FOOTER — NEW 4-COLUMN LAYOUT
====================================== */
.footer-grid-new {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding: 2rem 0 2rem;
}

/* Col 1: Logo */
.footer-brand-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  width: max-content;
}

.footer-emblem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-emblem-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-emblem-svg {
  display: flex;
  align-items: center;
}

.footer-brand-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.footer-brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2.5px;
}

.footer-brand-india {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1px;
}

.f-india {
  font-family: 'Playfair Display', serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3.5px;
}

.f-dash {
  font-size: 0.6rem;
  color: var(--gold);
  line-height: 1;
}

.footer-brand-tag {
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 600;
  white-space: nowrap;
}

/* Footer columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
}

.footer-col-links li a {
  font-size: 0.83rem;
  color: var(--text-body);
  transition: var(--transition);
}

.footer-col-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Social icon circles */
.footer-social-icons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197,160,89,0.35);
}

.footer-social-icon svg { display: block; }

/* Address / location */
.footer-address {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Responsive footer-grid-new */
@media (max-width: 1024px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}

@media (max-width: 640px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Hero service chips responsive */
@media (max-width: 520px) {
  .hero-services-row { gap: 0.5rem; }
  .hero-service-chip { padding: 0.7rem 0.75rem; min-width: 64px; }
  .hero-chip-icon { width: 30px; height: 30px; }
  .hero-chip-icon svg { width: 15px; height: 15px; }
  .hero-service-chip span { font-size: 0.65rem; }
}

/* ======================================
   WHATSAPP FLOATING BUTTON
====================================== */
#whatsappBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#whatsappBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#whatsappBtn:hover {
  background: #128C7E;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ======================================
   CREDIBILITY, LEGAL & ACCESSIBILITY
====================================== */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5000;
  padding: 0.65rem 0.9rem;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.featured-work-section { border-top: 1px solid var(--border); }
.featured-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.work-card { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-tag { display: inline-block; margin-bottom: auto; color: var(--gold-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.25px; text-transform: uppercase; }
.work-card h3 { max-width: 17ch; margin: 2.5rem 0 1rem; font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.55rem; line-height: 1.2; }
.work-card p { margin-bottom: 1.5rem; color: var(--text-body); line-height: 1.65; }
.work-card-dark { background: var(--navy); border-color: var(--navy); }
.work-card-dark h3, .work-card-dark p { color: var(--white); }
.work-card-dark p { color: rgba(255,255,255,.72); }
.work-card-dark .learn-more { color: var(--gold-light); }
.work-card-accent { background: linear-gradient(135deg, #f5efe4, var(--white)); border-top: 4px solid var(--gold); }

.consent-check { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1.25rem 0; color: var(--text-body); font-size: 0.79rem; line-height: 1.5; cursor: pointer; }
.consent-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold-dark); }
.consent-check a, .legal-content a { color: var(--gold-dark); text-decoration: underline; }
.compact-hero { min-height: 300px; background: var(--navy); display: flex; align-items: end; }
.compact-hero .page-hero-content { padding-bottom: 3.5rem; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 2.25rem 0 0.75rem; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.6rem; }
.legal-content p { color: var(--text-body); line-height: 1.8; }
.legal-updated { font-size: .84rem; color: var(--text-muted) !important; }
.map-directions { display: inline-block; margin-top: 0.85rem; color: var(--gold-dark); font-size: 0.84rem; font-weight: 700; }
.map-directions:hover { color: var(--navy); text-decoration: underline; }
.office-map-frame { display: block; width: 100%; height: 230px; border: 0; border-radius: var(--radius-sm); }
.office-map-frame + .map-placeholder { display: none; }

/* Editorial detail pages and cookie notice */
.article-hero { padding: 150px 0 70px; background: linear-gradient(120deg, var(--navy), var(--navy-light)); color: var(--white); }
.article-hero h1 { max-width: 860px; margin: 1rem 0; font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; }
.text-back { padding: 0; border: 0; background: transparent; color: var(--gold-light); font: inherit; font-weight: 700; cursor: pointer; }
.article-byline, .service-detail-lead { max-width: 720px; color: rgba(255,255,255,.78); }
.article-content, .service-detail-content { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr); gap: 5rem; max-width: 1050px; }
.article-lead { margin-bottom: 2rem; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.55rem; line-height: 1.45; }
#articleBody p { margin-bottom: 1.4rem; line-height: 1.85; }
.article-callout { align-self: start; padding: 1.75rem; background: var(--light-bg); border-top: 4px solid var(--gold); }
.article-callout h2, .service-detail-content h2 { margin-bottom: .7rem; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.55rem; }
.article-callout p { margin-bottom: 1.25rem; }
.service-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.service-point { min-height: 95px; padding: 1.25rem 1rem 1.25rem 1.5rem; border: 1px solid var(--border); color: var(--navy); font-weight: 600; position: relative; }
.service-point::before { content: ''; position: absolute; left: 0; top: 1.25rem; bottom: 1.25rem; width: 3px; background: var(--gold); }
.cookie-banner { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 2500; display: flex; align-items: center; gap: 1.25rem; max-width: 620px; padding: 1rem 1.15rem; background: var(--navy); box-shadow: var(--shadow-lg); color: var(--white); }
.cookie-banner p { font-size: .82rem; line-height: 1.45; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner > div { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-banner .btn-outline-sm { color: var(--white); border-color: rgba(255,255,255,.65); }

@media (max-width: 760px) { .article-content, .service-detail-content { grid-template-columns: 1fr; gap: 2rem; } .service-points { grid-template-columns: 1fr; } .cookie-banner { right: .75rem; left: .75rem; bottom: .75rem; flex-direction: column; align-items: flex-start; } }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) { .featured-work-grid { grid-template-columns: 1fr; } .work-card { min-height: 260px; } }

/* Home: industry editorial showcase */
.industry-showcase { padding: 8rem 0; background: #f1f2f4; overflow: hidden; }
.industry-showcase-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; margin-bottom: 3.25rem; }
.industry-showcase .section-title { margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 4.65rem); line-height: 1.02; letter-spacing: -0.055em; }
.industry-showcase-intro { max-width: 415px; padding-bottom: .35rem; }
.industry-showcase-intro p { margin-bottom: 1.5rem; color: var(--text-body); font-size: 1rem; line-height: 1.75; }
.industry-all-link { display: inline-flex; align-items: center; gap: .75rem; color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--gold); padding-bottom: .35rem; }
.industry-all-link span { transition: transform .25s ease; }.industry-all-link:hover span { transform: translateX(5px); }
.industry-showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(8,18,43,.18); border-left: 1px solid rgba(8,18,43,.18); }
.industry-tile { position: relative; min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem; color: var(--navy); background: transparent; border-right: 1px solid rgba(8,18,43,.18); border-bottom: 1px solid rgba(8,18,43,.18); overflow: hidden; transition: color .4s ease, background .4s ease; }
.industry-tile::before { content: ''; position: absolute; width: 260px; height: 260px; right: -115px; bottom: -145px; background: var(--gold); border-radius: 50%; transform: scale(0); transform-origin: center; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.industry-tile:hover::before, .industry-tile:focus-visible::before { transform: scale(1); }
.industry-tile:hover, .industry-tile:focus-visible { background: var(--navy); color: var(--white); outline: none; }
.industry-tile.featured { background: var(--navy); color: var(--white); }
.industry-tile.featured:hover { color: var(--navy); background: var(--gold); }
.industry-index, .industry-name, .industry-arrow { position: relative; z-index: 1; }
.industry-index { color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }.featured .industry-index { color: var(--gold-light); }.industry-tile:hover .industry-index { color: inherit; }
.industry-name { font-family: 'Playfair Display', serif; font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 600; line-height: 1.07; letter-spacing: -.035em; }
.industry-arrow { align-self: flex-end; display: grid; width: 33px; height: 33px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1rem; transition: transform .35s ease; }.industry-tile:hover .industry-arrow { transform: rotate(45deg); }
@media (max-width: 900px) { .industry-showcase { padding: 5.5rem 0; } .industry-showcase-head { grid-template-columns: 1fr; gap: 1.5rem; } .industry-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .industry-showcase { padding: 4.5rem 0; } .industry-showcase-grid { grid-template-columns: 1fr; } .industry-tile { min-height: 180px; } }

/* Image treatment for industry cards — one consistent editorial photo set */
.industry-tile { isolation: isolate; min-height: 300px; color: var(--white); background: var(--navy); }
.industry-tile::before { display: none; }
.industry-tile-image, .industry-tile-shade { position: absolute; inset: 0; z-index: -2; }
.industry-tile-image { background-image: url('industries-sprite.png'); background-size: 400% 200%; background-repeat: no-repeat; transform: scale(1.001); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.industry-tile-shade { z-index: -1; background: linear-gradient(180deg, rgba(4,13,34,.3) 0%, rgba(4,13,34,.15) 32%, rgba(4,13,34,.92) 100%); transition: background .45s ease; }
.image-01 { background-position: 0% 0%; }.image-02 { background-position: 33.333% 0%; }.image-03 { background-position: 66.667% 0%; }.image-04 { background-position: 100% 0%; }
.image-05 { background-position: 0% 100%; }.image-06 { background-position: 33.333% 100%; }.image-07 { background-position: 66.667% 100%; }.image-08 { background-position: 100% 100%; }
.industry-tile:hover, .industry-tile:focus-visible { color: var(--white); background: var(--navy); }
.industry-tile:hover .industry-tile-image, .industry-tile:focus-visible .industry-tile-image { transform: scale(1.09); filter: saturate(1.08); }
.industry-tile:hover .industry-tile-shade, .industry-tile:focus-visible .industry-tile-shade { background: linear-gradient(180deg, rgba(4,13,34,.16), rgba(4,13,34,.1) 25%, rgba(4,13,34,.76)); }
.industry-tile .industry-index { color: var(--gold-light); }
.industry-tile .industry-arrow { background: rgba(255,255,255,.06); backdrop-filter: blur(5px); }
.industry-tile .industry-name { max-width: 10ch; text-shadow: 0 2px 16px rgba(0,0,0,.25); }
@media (max-width: 900px) { .industry-tile { min-height: 260px; } }
@media (max-width: 520px) { .industry-tile { min-height: 225px; } }

/* Industries page: image-led sector directory */
#page-industries .section.section-white { background: #f5f5f3; }
#page-industries .section-label { margin-bottom: 1rem; }
#page-industries .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
#page-industries .industry-card { display: grid; grid-template-columns: minmax(190px, .9fr) 1.1fr; min-height: 330px; border: 1px solid #dcdedc; border-radius: 0; background: var(--white); box-shadow: none; }
#page-industries .industry-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(8,18,43,.12); }
#page-industries .industry-card-img { min-height: 330px; height: auto; background-image: url('industries-sprite.png'); background-size: 400% 200%; background-repeat: no-repeat; transition: filter .45s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
#page-industries .industry-card:hover .industry-card-img { filter: saturate(1.1) contrast(1.04); transform: scale(1.035); }
#page-industries .industry-card-img::after { display: none; }
#page-industries .industry-card-img.ind-financial { background-position: 0% 0%; }
#page-industries .industry-card-img.ind-manufacturing { background-position: 33.333% 0%; }
#page-industries .industry-card-img.ind-healthcare { background-position: 66.667% 0%; }
#page-industries .industry-card-img.ind-technology { background-position: 100% 0%; }
#page-industries .industry-card-img.ind-retail { background-position: 0% 100%; }
#page-industries .industry-card-img.ind-energy { background-position: 33.333% 100%; }
#page-industries .industry-card-img.ind-education { background-position: 66.667% 100%; }
#page-industries .industry-card-img.ind-infrastructure { background-position: 100% 100%; }
#page-industries .industry-card-body { display: flex; flex-direction: column; align-items: flex-start; padding: 2.2rem 1.9rem; overflow: hidden; }
#page-industries .industry-card-icon { display: none; }
#page-industries .industry-card-body h3 { margin-bottom: 1rem; color: var(--navy); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.12; letter-spacing: -.035em; }
#page-industries .industry-card-body p { flex: 1; color: #657086; font-size: .94rem; line-height: 1.72; }
#page-industries .industry-card-body .learn-more { margin-top: 1.7rem; color: var(--gold-dark); font-size: .8rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
#page-industries .industry-card-body .learn-more::before { content: 'Sector expertise'; display: none; }
@media (max-width: 900px) { #page-industries .industries-grid { grid-template-columns: 1fr; } #page-industries .industry-card { grid-template-columns: minmax(210px, .8fr) 1.2fr; } }
@media (max-width: 560px) { #page-industries .industry-card { grid-template-columns: 1fr; } #page-industries .industry-card-img { min-height: 220px; } #page-industries .industry-card-body { min-height: 260px; padding: 1.7rem; } }

/* Services page: decision-oriented service directory */
#page-services .page-hero { min-height: 420px; display: flex; align-items: flex-end; }
#page-services .page-hero-content { padding-bottom: 4.5rem; }
#page-services .page-hero-content::before { content: 'WHAT WE DO'; display: block; margin-bottom: 1rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .22em; }
#page-services .page-hero-content h1 { max-width: 740px; font-size: clamp(3rem, 6vw, 5rem); letter-spacing: -.055em; }
#page-services .page-hero-content p { max-width: 630px; font-size: 1.08rem; line-height: 1.7; }
#page-services .section.section-white { background: #f4f5f4; }
#page-services .section-title { max-width: 780px; margin: 0 auto; font-size: clamp(2.3rem, 4.5vw, 4rem); line-height: 1.06; letter-spacing: -.05em; }
#page-services .services-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 3.5rem; border: 1px solid #d9ddda; background: #d9ddda; }
#page-services .service-detail-card { position: relative; display: grid; grid-template-columns: 70px 1fr; column-gap: 1.5rem; min-height: 385px; padding: 2.25rem; border: 0; border-radius: 0; box-shadow: none; background: #fff; overflow: hidden; transition: background .35s ease, transform .35s ease, box-shadow .35s ease; }
#page-services .service-detail-card::before { content: '0' counter(service-count); position: absolute; top: 1.8rem; right: 2rem; color: #d4d8d6; font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
#page-services .services-detail-grid { counter-reset: service-count; }
#page-services .service-detail-card { counter-increment: service-count; }
#page-services .service-detail-card:hover { z-index: 1; transform: translateY(-5px); border-color: transparent; background: var(--navy); box-shadow: 0 18px 38px rgba(8,18,43,.17); }
#page-services .sdc-icon { grid-row: 1 / span 3; width: 62px; height: 62px; margin: 0; background: #eef0ee; border-radius: 50%; }
#page-services .sdc-icon svg { stroke: var(--gold-dark); }
#page-services .service-detail-card h3 { align-self: end; margin: 0 3rem .75rem 0; color: var(--navy); font-size: 1.8rem; line-height: 1.08; letter-spacing: -.035em; }
#page-services .service-detail-card p { grid-column: 2; margin: 0 0 1.25rem; color: #677084; font-size: .9rem; line-height: 1.7; }
#page-services .service-list { grid-column: 2; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 1.2rem; margin: 0; }
#page-services .service-list li { padding: .58rem 0; font-size: .78rem; border-bottom: 1px solid #e2e4e3; }
#page-services .service-detail-card .learn-more { grid-column: 2; align-self: end; margin-top: 1.45rem; color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
#page-services .service-detail-card:hover h3 { color: var(--white); }
#page-services .service-detail-card:hover p { color: rgba(255,255,255,.72); }
#page-services .service-detail-card:hover .service-list li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.17); }
#page-services .service-detail-card:hover .learn-more { color: var(--gold-light); }
#page-services .service-detail-card:hover .sdc-icon { background: rgba(255,255,255,.1); }
#page-services .service-detail-card:hover .sdc-icon svg { stroke: var(--gold-light); }
#page-services .service-detail-card:hover::before { color: rgba(255,255,255,.22); }
@media (max-width: 900px) { #page-services .services-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { #page-services .page-hero { min-height: 360px; } #page-services .page-hero-content { padding-bottom: 3.25rem; } #page-services .service-detail-card { grid-template-columns: 1fr; min-height: auto; padding: 1.7rem; } #page-services .sdc-icon, #page-services .service-detail-card p, #page-services .service-list, #page-services .service-detail-card .learn-more { grid-column: 1; grid-row: auto; } #page-services .service-detail-card h3 { margin: 1.35rem 3rem .7rem 0; } #page-services .service-list { grid-template-columns: 1fr; } }

/* Individual service page: focused, high-conversion detail layout */
#page-service-detail .article-hero { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(110deg, #071229 0%, #0e2147 58%, #102955 100%); }
#page-service-detail .article-hero::before { content: ''; position: absolute; width: min(48vw, 720px); height: min(48vw, 720px); right: -9vw; top: -28%; border: 1px solid rgba(212,180,117,.34); border-radius: 50%; box-shadow: 0 0 0 58px rgba(212,180,117,.055), 0 0 0 116px rgba(212,180,117,.035); }
#page-service-detail .article-hero::after { content: 'CAI'; position: absolute; right: 9%; bottom: -13%; color: rgba(255,255,255,.045); font-family: 'Playfair Display', serif; font-size: clamp(12rem, 28vw, 28rem); font-weight: 800; line-height: 1; letter-spacing: -.1em; }
#page-service-detail .article-hero .container { position: relative; z-index: 1; width: 100%; }
#page-service-detail .text-back { display: inline-flex; align-items: center; margin-bottom: 2.2rem; font-size: .85rem; }
#page-service-detail .section-label { margin-bottom: 1rem; }
#page-service-detail .article-hero h1 { max-width: 700px; margin: 0 0 1.3rem; font-size: clamp(3.6rem, 7vw, 6.4rem); letter-spacing: -.065em; }
#page-service-detail .service-detail-lead { max-width: 650px; font-size: clamp(1.04rem, 1.5vw, 1.25rem); line-height: 1.7; }
#page-service-detail .section.section-white { background: #f6f6f4; }
#page-service-detail .service-detail-content { grid-template-columns: minmax(0, 1.6fr) minmax(300px, .72fr); gap: 5rem; max-width: 1120px; }
#page-service-detail .service-detail-content > div > h2 { margin-bottom: 1.8rem; font-size: clamp(2rem, 3vw, 2.7rem); letter-spacing: -.045em; }
#page-service-detail .service-points { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 0; counter-reset: capability; }
#page-service-detail .service-point { min-height: 150px; display: flex; align-items: flex-end; padding: 1.5rem; padding-top: 3.7rem; border: 1px solid #dedfdd; background: var(--white); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 600; line-height: 1.18; letter-spacing: -.025em; transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease; counter-increment: capability; }
#page-service-detail .service-point::before { content: '0' counter(capability); left: 1.5rem; top: 1.35rem; bottom: auto; width: auto; height: auto; background: transparent; color: var(--gold-dark); font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
#page-service-detail .service-point::after { content: '↗'; position: absolute; right: 1.35rem; top: 1.15rem; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #d9dcda; border-radius: 50%; font-family: 'Inter', sans-serif; font-size: .75rem; }
#page-service-detail .service-point:hover { background: var(--navy); color: var(--white); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(8,18,43,.13); }
#page-service-detail .service-point:hover::after { border-color: var(--gold-light); color: var(--gold-light); }
#page-service-detail .article-callout { position: sticky; top: 110px; padding: 2.3rem; border: 0; border-top: 5px solid var(--gold); background: var(--navy); color: var(--white); }
#page-service-detail .article-callout::before { content: 'LET’S TALK'; display: block; margin-bottom: 1.3rem; color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: .17em; }
#page-service-detail .article-callout h2 { color: var(--white); font-size: 2.1rem; line-height: 1.08; }
#page-service-detail .article-callout p { color: rgba(255,255,255,.72); line-height: 1.7; }
#page-service-detail .article-callout .btn-primary { display: inline-flex; margin-top: .45rem; background: var(--gold); color: var(--navy); }
#page-service-detail .article-callout .btn-primary:hover { background: var(--gold-light); }
@media (max-width: 850px) { #page-service-detail .article-hero { min-height: 420px; } #page-service-detail .service-detail-content { grid-template-columns: 1fr; gap: 3rem; } #page-service-detail .article-callout { position: relative; top: auto; } }
@media (max-width: 560px) { #page-service-detail .article-hero { min-height: 390px; padding-top: 2rem; } #page-service-detail .article-hero::before { width: 80vw; height: 80vw; right: -30vw; top: -12%; } #page-service-detail .article-hero h1 { font-size: 3.3rem; } #page-service-detail .service-points { grid-template-columns: 1fr; } #page-service-detail .service-point { min-height: 125px; } #page-service-detail .article-callout { padding: 1.7rem; } }
