:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --brand: #209aa8;
  --brand-light: #4fb3bf;
  --brand-pale: #c1e7ed;
  --cream: #f8f4ee;
  --white: #ffffff;
  --gray-100: #f0ede8;
  --gray-200: #ddd8d0;
  --gray-400: #9a9080;
  --gray-600: #635d54;
  --accent-blue: #1e4a8c;
  --accent-teal: #1a6b6b;
  --text-dark: #0a1628;
  --font-display:
    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif !important;
  --font-body:
    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif !important;
  --font-mono:
    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  --shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-med: 0 8px 40px rgba(10, 22, 40, 0.14);
  --shadow-hard: 0 16px 64px rgba(10, 22, 40, 0.22);
  --radius: 2px;
  --radius-lg: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --slider-duration: 5000ms;
  --slider-transition: 900ms cubic-bezier(0.77, 0, 0.175, 1);
  --font-display-slider: "Cormorant Garamond", serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 154, 168, 0.2);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}
/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 200px; /* desktop */
  height: 55px;
}

/* Logo Image */
.logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;

  /* optional for sharpness */
  image-rendering: -webkit-optimize-contrast;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .logo {
    width: 150px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo {
    width: 120px;
    height: 50px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links li button::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links li button:hover,
.nav-links li button.active {
  color: var(--white);
}
.nav-links li button.active::after,
.nav-links li button:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-cta {
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-light)
  ) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 3px !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.page {
  display: none;
  min-height: 100vh;
  animation: fadeIn 0.5s ease;
}
.page.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #060e1a;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(30, 74, 140, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(32, 154, 168, 0.12) 0%,
      transparent 60%
    );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 154, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 154, 168, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner_inner {
  padding: 50px 40px 90px !important;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 154, 168, 0.12);
  border: 1px solid rgba(32, 154, 168, 0.3);
  color: var(--brand-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 63px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
}
.hero-title .gold-word {
  color: var(--brand-light);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 154, 168, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  transform: translateY(-2px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.stat-box {
  padding: 24px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.stat-box + .stat-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--brand-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.hero-card-main .card-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-card-main .card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}
.tag-gold {
  background: rgba(32, 154, 168, 0.2);
  color: var(--brand-light);
  border: 1px solid rgba(32, 154, 168, 0.3);
}
.tag-blue {
  background: rgba(30, 74, 140, 0.3);
  color: #7eb3ff;
  border: 1px solid rgba(30, 74, 140, 0.4);
}
.tag-teal {
  background: rgba(26, 107, 107, 0.3);
  color: #7ed6d6;
  border: 1px solid rgba(26, 107, 107, 0.4);
}
.hero-card-float {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.float-label {
  font-size: 11px;
  color: rgba(10, 22, 40, 0.767);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}
.float-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.hero-card-accent {
  position: absolute;
  top: 0;
  right: 80px;
  background: var(--navy-mid);
  border: 1px solid rgba(32, 154, 168, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.accent-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.accent-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.accent-text strong {
  color: #22c55e;
  font-size: 14px;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--brand);
}
.shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 60%;
}
.shape-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 80%;
  background: var(--accent-blue);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

/* Left Line */
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Right Line */
.section-tag::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title .accent {
  color: var(--brand);
}
.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 600px;
}
.credentials {
  width: 100%;
  background: #f8f4ee;
  position: relative;
}
.credentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.credentials-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}
.cred-left {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.cred-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 0;
}
.cred-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cred-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brand);
  flex-shrink: 0;
}
.cred-headline {
  font-size: clamp(32px, 5vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  color: #0d1b2a;
}
.cred-headline em {
  font-style: italic;
  color: var(--brand-light);
}
.cred-since {
  text-align: right;
  flex-shrink: 0;
}
.since-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #7a96b0;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.since-year {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(13, 27, 42, 0.15);
  letter-spacing: -2px;
}
.cred-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.cred-mega {
  position: sticky;
  top: 78px;
}
.mega-stat {
  position: relative;
  padding: 40px 22px;
  background: #fff;
  border: 1px solid #d6e4f7;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.06);
  opacity: 0;
  animation: fade-up 0.6s ease 0.1s forwards;
}
.mega-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand-light),
    transparent
  );
}
.mega-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -3px;
}
.mega-plus {
  font-size: 48px;
  vertical-align: super;
  color: var(--brand);
}
.mega-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #3d5166;
  line-height: 1.6;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mega-label strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #0d1b2a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.sub-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  animation: fade-up 0.6s ease 0.25s forwards;
}
.sub-stat {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid #d6e4f7;
  border-radius: 10px;
  transition: var(--transition);
  cursor: default;
  box-shadow: 0 1px 6px rgba(13, 27, 42, 0.04);
}
.sub-stat:hover {
  border-color: var(--brand-light);
}
.sub-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.sub-stat-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a96b0;
}
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cred-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #e4edf8;
  position: relative;
  transition: var(--transition);
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  animation: row-in 0.55s ease forwards;
}
.cred-row:first-child {
  padding-top: 0;
}
.cred-row:last-child {
  border-bottom: none;
}
.cred-row::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  border-radius: 2px;
}
.cred-row:hover::after {
  transform: scaleY(1);
}
.cred-row:hover .cred-icon-wrap {
  background: rgba(32, 154, 168, 0.1);
  border-color: rgba(32, 154, 168, 0.35);
}
.cred-row:nth-child(1) {
  animation-delay: 0.05s;
}
.cred-row:nth-child(2) {
  animation-delay: 0.15s;
}
.cred-row:nth-child(3) {
  animation-delay: 0.25s;
}
.cred-row:nth-child(4) {
  animation-delay: 0.35s;
}
.cred-row:nth-child(5) {
  animation-delay: 0.45s;
}
@keyframes row-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cred-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d6e4f7;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(13, 27, 42, 0.06);
}
.cred-tag {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.cred-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cred-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #3d5166;
  font-weight: 300;
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(32, 154, 168, 0.08);
  border: 1px solid rgba(32, 154, 168, 0.2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.cred-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
#about {
  background: var(--cream);
  padding-top: 70px;
}


/* ================================
   ABOUT HERO SECTION
================================ */
.about-hero {
  background: var(--navy);
  padding: 50px 40px 70px 40px;
  position: relative;
  overflow: hidden;
}
 
.about-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
 
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(32, 154, 168, 0.08),
    transparent
  );
}
 
.about-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
 
.about-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
 
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
/* ================================
   ABOUT CARDS
================================ */
.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}
 
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
 
.about-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
 
.about-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}
 
.about-card-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
 
.about-card.span2 {
  grid-column: span 2;
}
 
/* ================================
   EXPERTISE BADGES (slider-badge-)
================================ */
.slider-badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
 
.slider-badge- {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(63, 189, 212, 0.07);
  border: 1px solid rgba(63, 189, 212, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  flex: 1 1 220px;
}
 
.slider-badge- i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
}
 
.slider-badge- p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
 
.slider-badge- p strong {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
 
/* ================================
   EXPERTISE BULLET LISTS
================================ */
.expertise-list {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
}
 
.expertise-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 4px;
}
 
.expertise-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brand-light, #3fbdd4);
}
 
/* ================================
   EXPERTISE DETAIL GRID
================================ */
.expertise-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
 
.expertise-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
 
.expertise-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(63, 189, 212, 0.6), transparent);
}
 
.expertise-detail-card:hover {
  border-color: rgba(63, 189, 212, 0.25);
}
 
.expertise-detail-card-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
 
.expertise-detail-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
 
/* ================================
   TEAM TABLE
================================ */
.team-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
}
 
.team-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 20px;
}
 
.team-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
 
.team-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
 
.team-table thead tr {
  background: rgba(32, 154, 168, 0.12);
}
 
.team-table th {
  font-family: var(--font-display, sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
 
.team-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s;
}
 
.team-table tbody tr:last-child {
  border-bottom: none;
}
 
.team-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
 
.team-table td {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  vertical-align: middle;
}
 
.team-table td:first-child {
  color: var(--white, #fff);
  font-weight: 600;
}
 
.tag-pill {
  display: inline-block;
  background: rgba(63, 189, 212, 0.12);
  border: 1px solid rgba(63, 189, 212, 0.25);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  color: #3fbdd4;
  margin: 2px;
  white-space: nowrap;
}
 
.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
 
/* ================================
   APPROACH CALLOUT BOX
================================ */
 
.approach-box {
  background: rgba(32, 154, 168, 0.08);
  border: 1px solid rgba(32, 154, 168, 0.22);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
 
.approach-box-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.approach-box-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0 0 12px 0;
}
 
.approach-box-body p:last-child {
  margin-bottom: 0;
}
 
.approach-box-body strong {
  color: rgba(255, 255, 255, 0.9);
}
 
/* ================================
   MOBILE RESPONSIVE (≤700px)
================================ */
@media (max-width: 700px) {
  .about-hero {
    padding: 36px 20px 50px 20px;
  }
 
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  .about-visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }
 
  .about-card.span2 {
    grid-column: span 1;
  }
 
  .slider-badge-wrapper {
    flex-direction: column;
  }
 
  .slider-badge- {
    flex: 1 1 100%;
  }
 
  .expertise-detail-grid {
    grid-template-columns: 1fr;
  }
 
  .team-section {
    padding: 0 20px 50px 20px;
  }
 
  
 
  .approach-box {
    flex-direction: column;
    padding: 20px;
  }
 
  .pan-india-note {
    flex-direction: column !important;
  }
}



.vm-section {
  padding: 80px 40px;
  background: var(--white);
}
.vm-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.vm-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.vm-mission {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--navy);
}
.vm-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}
.vm-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.vm-points {
  list-style: none;
}
.vm-points li {
  font-size: 14px;
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.vm-vision .vm-points li {
  border-color: rgba(255, 255, 255, 0.08);
}
.vm-points li::before {
  content: "→";
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 1px;
}
#services {
  background: var(--cream);
  padding-top: 70px;
}
.services-hero {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 50% 50%,
    rgba(32, 154, 168, 0.1),
    transparent
  );
}
.services-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}







/* ── Section Wrapper ── */
    .section-wrap {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
      padding: 90px 40px 60px;
    }
 
    /* ── Eyebrow ── */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #1a8fa3;
      margin-bottom: 18px;
    }
    .section-eyebrow::before {
      content: "";
      display: inline-block;
      width: 28px;
      height: 1.5px;
      background: #1a8fa3;
      border-radius: 2px;
    }
 
    /* ── Heading ── */
    .section-heading {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: #07111f;
      margin-bottom: 14px;
    }
    .section-heading em {
      font-style: normal;
      color: #1a8fa3;
    }
 
    /* ── Subtext ── */
    .section-sub {
      font-size: 15px;
      line-height: 1.75;
      color: #5a6a7e;
      max-width: 540px;
      margin-bottom: 64px;
    }
 
    /* ── Cards Grid ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
 
    @media (max-width: 768px) {
      .cards-grid {
        grid-template-columns: 1fr;
      }
      .section-wrap {
        padding: 60px 20px 40px;
      }
    }
 
    /* ── Card ── */
    .card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #e2e8f0;
      display: flex;
      flex-direction: column;
      height: 100%;
      cursor: default;
      transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
      animation: fadeUp 0.6s both;
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    .card:hover {
      border-color: rgba(26, 143, 163, 0.4);
      transform: translateY(-5px);
      box-shadow:
        0 20px 50px rgba(7, 17, 31, 0.1),
        0 0 0 1px rgba(26, 143, 163, 0.08);
    }
 
    .card:nth-child(1) { animation-delay: 0.05s; }
    .card:nth-child(2) { animation-delay: 0.15s; }
    .card:nth-child(3) { animation-delay: 0.25s; }
    .card:nth-child(4) { animation-delay: 0.10s; }
    .card:nth-child(5) { animation-delay: 0.20s; }
 
    /* ── Card Image Wrap (Slider Container) ── */
    .card-img-wrap {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      flex-shrink: 0;
    }
 
    /* ── Slider Images ── */
    .card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      opacity: 0;
      transition:
        opacity 0.9s ease,
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.3s;
      filter: brightness(0.75) saturate(0.8);
    }
 
    .card-img.active {
      opacity: 1;
    }
 
    .card:hover .card-img.active {
      transform: scale(1.06);
      filter: brightness(0.65) saturate(0.7);
    }
 
    /* ── Gradient Overlay ── */
    .card-img-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 100%
      );
      pointer-events: none;
      z-index: 2;
    }
 
    /* ── Card Number Badge ── */
    .card-num {
      position: absolute;
      top: 16px;
      left: 18px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: #fff;
      background: rgba(7, 17, 31, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 100px;
      padding: 5px 13px;
      backdrop-filter: blur(6px);
      z-index: 3;
    }
 
    /* ── Icon Chip ── */
    .card-icon-chip {
      position: absolute;
      bottom: 18px;
      right: 18px;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #1a8fa3;
      backdrop-filter: blur(8px);
      transition: background 0.3s, transform 0.3s;
      z-index: 3;
    }
 
    .card:hover .card-icon-chip {
      background: #fff;
      transform: scale(1.1);
    }
 
    /* ── Slider Arrow Buttons ── */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      background: rgba(7, 17, 31, 0.52);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      opacity: 0;
      transition: opacity 0.3s, background 0.3s, transform 0.2s;
      backdrop-filter: blur(6px);
      user-select: none;
    }
 
    .card:hover .slider-btn {
      opacity: 1;
    }
 
    .slider-btn:hover {
      background: rgba(26, 143, 163, 0.8);
      transform: translateY(-50%) scale(1.08);
    }
 
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }
 
    /* ── Slider Dots ── */
    .slider-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 5;
    }
 
    .slider-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.40);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }
 
    .slider-dot.active {
      background: #fff;
      transform: scale(1.35);
    }
 
    /* ── Slide Counter ── */
    .slide-counter {
      position: absolute;
      top: 16px;
      right: 18px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.85);
      background: rgba(7, 17, 31, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 100px;
      padding: 4px 10px;
      backdrop-filter: blur(6px);
      z-index: 3;
    }
 
    /* ── Card Body ── */
    .card-body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
 
    .card-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.25;
      color: #07111f;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
 
    .card-divider {
      width: 36px;
      height: 2px;
      background: linear-gradient(to right, #1a8fa3, transparent);
      border-radius: 2px;
      margin-bottom: 14px;
      transition: width 0.4s;
    }
 
    .card:hover .card-divider {
      width: 64px;
    }
 
    .card-text {
      font-size: 13.5px;
      line-height: 1.75;
      color: #5a6a7e;
      flex: 1;
    }
 
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 20px;
    }
 
    .card-tag {
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: #5a6a7e;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-radius: 100px;
      padding: 4px 12px;
    }
 
    .card-tag.teal {
      color: #1a8fa3;
      background: rgba(26, 143, 163, 0.08);
      border-color: rgba(26, 143, 163, 0.2);
    }
 
    .card-tag.gold {
      color: #b8860b;
      background: rgba(184, 134, 11, 0.08);
      border-color: rgba(184, 134, 11, 0.2);
    }
 
    /* ── Progress Bar ── */
    .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: #1a8fa3;
      width: 0%;
      z-index: 5;
      transition: width linear;
    }



.bottom-strip {
  margin-top: 56px;
  padding: 28px 36px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 143, 163, 0.1);
  border: 1px solid rgba(26, 143, 163, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
}
.strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #07111f;
  margin-bottom: 2px;
}
.strip-text span {
  font-size: 13px;
  color: #5a6a7e;
}
.strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.strip-btn:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}




@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.featured-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.featured-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.featured-item strong {
  display: block;
  color: var(--brand-light);
  font-size: 18px;
  margin-bottom: 4px;
}
#industries {
  background: var(--cream);
  padding-top: 70px;
}
.industries-hero {
  background: var(--navy);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.industries-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.industries-wheel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ind-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  color: var(--white);
}
.ind-chip:hover {
  background: rgba(32, 154, 168, 0.1);
  border-color: rgba(32, 154, 168, 0.3);
}
.ind-chip-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.ind-chip-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.industries-detail {
  padding: 80px 40px;
  background: var(--white);
}
.industries-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ind-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ind-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
}
.ind-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ind-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.ind-card:hover .ind-card-img {
  transform: scale(1.05);
}
.ind-card:hover .ind-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.98) 0%,
    rgba(30, 74, 140, 0.6) 70%,
    rgba(32, 154, 168, 0.2) 100%
  );
}
.ind-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.ind-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand-light);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
#team {
  background: var(--cream);
  padding-top: 70px;
}
.team-wrapper {
  background: var(--navy);
}
.team-hero {
  padding: 80px 40px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
/* Hide */
.hidden {
  display: none !important;
}
.profile-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px;
}
.profile-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.profile-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}
.profile-header p {
  margin-top: 10px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
}
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.tab-btn:hover {
  border-color: rgba(32, 154, 168, 0.55);
  color: var(--brand);
  background: rgba(32, 154, 168, 0.08);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.profile-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
  border-color: rgba(32, 154, 168, 0.55);
}
.card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.role-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--navy);
}
.role-label .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(32, 154, 168, 0.12);
  border: 1px solid rgba(32, 154, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg {
  width: 18px;
  height: 18px;
}
.mini-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mini-tag {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.mini-tag.gold {
  background: rgba(32, 154, 168, 0.14);
  border-color: rgba(32, 154, 168, 0.35);
  color: var(--brand);
}
.card-body {
  padding: 18px 16px 16px;
}
.card-body h3 {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
}
.card-body p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  /* max-height: 80px; */
  overflow: hidden;
  transition: var(--transition);
}
.profile-card.expanded .card-body p {
  max-height: 500px;
}
.card-footer {
  padding: 14px 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.view-btn {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
}
.view-btn:hover {
  background: rgba(32, 154, 168, 0.08);
  border-color: rgba(32, 154, 168, 0.55);
  color: var(--brand);
  transform: translateY(-2px);
}
#presence {
  background: var(--cream);
  padding-top: 70px;
}
.presence-hero {
  background: var(--navy);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.presence-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.offices-section {
  padding: 80px 40px;
  background: var(--white);
}
.offices-inner {
  max-width: 1400px;
  margin: 0 auto;
}
/* GRID */

/* CARD */

.office-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* HEADER */

.office-card-header {
  padding: 24px 28px;
  background: #1f98a5;
}

/* TITLE LINE */

.office-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TYPE */

.office-type {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* CITY */

.office-city {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* BODY */

.office-card-body {
  padding: 24px 28px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-top: none;
}

/* ADDRESS */

.office-address {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.office-address i {
  color: #1f98a5;
  margin-right: 6px;
}

/* MAP */

.office-map {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  position: relative;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MAP BUTTON */

.map-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #1f98a5;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.map-btn:hover {
  background: #167c87;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.pan-india-note {
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--navy), var(--accent-blue));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
}
.pan-india-icon {
  font-size: 40px;
  flex-shrink: 0;
}
.pan-india-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}
.pan-india-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
#compliance {
  background: var(--cream);
  padding-top: 70px;
}
.compliance-hero {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.compliance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(32, 154, 168, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 80% 50%, rgba(26, 107, 107, 0.1), transparent 40%);
}
.compliance-body {
  padding: 80px 40px;
  background: var(--white);
}
.compliance-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.compliance-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.compliance-card.primary {
  background: var(--navy);
  grid-row: span 2;
}
.compliance-card.secondary {
  background: var(--cream);
  border: 1px solid var(--gray-200);
}
.compliance-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.compliance-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.compliance-card.primary .compliance-card-title {
  color: var(--white);
}
.compliance-card.secondary .compliance-card-title {
  color: var(--navy);
}
.compliance-card-text {
  font-size: 14px;
  line-height: 1.75;
}
.compliance-card.primary .compliance-card-text {
  color: rgba(255, 255, 255, 0.55);
}
.compliance-card.secondary .compliance-card-text {
  color: var(--gray-600);
}
.commitment-list {
  list-style: none;
  margin-top: 20px;
}
.commitment-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.commitment-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}
.disclaimer-box {
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--gray-100);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.disclaimer-box h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}
.disclaimer-box p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.75;
}
#contact {
  background: var(--cream);
  padding-top: 70px;
}
.contact-hero {
  background: var(--navy);
  padding: 80px 40px;
}

/* ── SECTION SHELL ── */
.contact-shell {
  background: var(--cream);
  padding: 40px 40px 30px;
  position: relative;
  overflow: hidden;
}

/* Decorative grid lines */
.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 154, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 154, 168, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Decorative large number */
.contact-shell::after {
  content: "CONNECT";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display-slider);
  font-size: 110px;
  font-weight: 700;
  color: rgba(32, 154, 168, 0.04);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
}

.contact-heading {
  font-family: var(--font-display-slider);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.contact-heading em {
  font-style: italic;
  color: var(--brand);
}

.contact-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 12px;
}

.header-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(32, 154, 168, 0.25);
  background: rgba(32, 154, 168, 0.06);
  text-align: center;
  gap: 4px;
  padding: 16px;
}
.header-badge span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.4;
}
.header-badge strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  display: block;
}

/* ── MAIN GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
}

/* ── PANEL ── */
.c-panel {
  padding: 40px 36px;
  position: relative;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}
.c-panel:last-child {
  border-right: none;
}

.c-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand-light),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-panel:hover::before {
  transform: scaleX(1);
}

/* ── OFFICES FULL WIDTH ── */
.offices-full {
  background: var(--navy);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-med);
}
.offices-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand-light),
    transparent
  );
}
.offices-full::after {
  content: "LOCATIONS";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display-slider);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
}
.offices-gri-e {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.office-card-e {
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: var(--transition);
}

.office-card-e:hover {
  background: rgba(255, 255, 255, 0.03);
}
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ← was repeat(3, 1fr) */
  gap: 20px;
  margin-top: 28px;
}
.offices-grid .office-card {
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.offices-grid .office-card:nth-child(3) {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.office-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.office-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
}
.office-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(79, 179, 191, 0.1);
  border: 1px solid rgba(79, 179, 191, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
}
.office-city-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.office-divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  margin-bottom: 12px;
  transition: width 0.35s ease;
}
.office-card:hover .office-divider {
  width: 52px;
}
.office-full-addr {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-family: var(--font-body);
}

.panel-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.offices-panel-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.offices-panel-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ================================
   MOBILE RESPONSIVE (≤700px)
================================ */
@media (max-width: 700px) {

  /* Full container */
  .offices-full {
    padding: 20px 15px;
    border-radius: 10px;
  }

  /* Remove big background text (too heavy on mobile) */
  .offices-full::after {
    display: none;
  }

  /* Grid → single column */
  .offices-gri-e {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Remove forced full-width third card */
  .offices-grid .office-card:nth-child(3) {
    grid-column: auto;
  }

  

  /* Top section */
  .office-card-top {
    gap: 8px;
    margin-bottom: 10px;
  }

  .office-num {
    font-size: 9px;
  }

  .office-tag {
    font-size: 8px;
    padding: 2px 8px;
  }

  /* City name */
  .office-city-name {
    font-size: 18px;
    margin-bottom: 8px;
  }

  /* Divider */
  .office-divider {
    width: 24px;
    margin-bottom: 10px;
  }

  /* Address */
  .office-full-addr {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Labels */
  .panel-label,
  .offices-panel-label {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .client-logo-slide img {
    padding: 0 !important;
  }
}
/* ── CONTACT METHOD ── */
.c-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: default;
  transition: var(--transition);
}
.c-method-content{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    cursor: default;
    transition: var(--transition);
}
.c-info-box{
  display: flex;
  align-items: center;
  gap:18px;
}
.c-method:first-of-type {
  padding-top: 0;
}
.c-method:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.c-method:hover {
  transform: translateX(4px);
}

.c-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(32, 154, 168, 0.08);
  border: 1px solid rgba(32, 154, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  font-size: 15px;
  transition: var(--transition);
}
.c-method:hover .c-icon {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.c-text-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.c-text-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.4;
  text-decoration: none;
}
.text-value {
  font-size: 14px;
  font-weight: 500;
  color: rgb(255 255 255 / 50%);
  font-family: var(--font-display);
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}

/* ── BOTTOM STRIP ── */
.contact-strip {
  margin-top: 0;
  padding: 22px 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05);
  }
}
.strip-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
}
.strip-text strong {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1px;
}
.strip-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(79, 179, 191, 0.1);
  border: 1px solid rgba(79, 179, 191, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .office-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .contact-header {
    grid-template-columns: 1fr;
  }
  .header-badge {
    display: none;
  }
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .c-panel {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .c-panel:last-child {
    border-bottom: none;
  }
  .offices-full {
    padding: 32px 24px;
  }
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

footer {
  background: var(--navy);
  padding: 60px 40px 32px;
  border-top: 1px solid rgba(32, 154, 168, 0.15);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  text-align: left;
}
.footer-links li button:hover {
  color: var(--brand-light);
}
.footer-contact-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item span {
  color: var(--brand-light);
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.irdai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32, 154, 168, 0.1);
  border: 1px solid rgba(32, 154, 168, 0.2);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-med);
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.scroll-top.visible {
  display: flex;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}
.main {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px;
}
.main_inner,
.vision-section,
.mission-section {
  width: 100%;
}
.main_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.vision-section {
  animation: fadeUp 0.8s ease 0.1s both;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.label-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand);
}
.label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e6f4f4, transparent);
}
.vision-text h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.vision-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #6b7280;
  font-weight: 300;
}
.vision-grid {
  flex: 1;
  display: flex;
}
.vision-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.vision-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: "Libre Baskerville", serif;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
}
.vision-card p {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}
.vision-card .highlight {
  display: inline-block;
  background: rgba(110, 231, 183, 0.2);
  color: #6ee7b7;
  padding: 1px 6px;
  border-radius: 3px;
  font-style: normal;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}
.mission-section {
  animation: fadeUp 0.8s ease 0.25s both;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mission-section h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex: 1;
}
.m-card {
  background: #f9f8f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 32px 28px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
}
.m-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 107, 107, 0.1);
  border-color: #1a8f8f;
}
.m-card:hover .m-icon {
  background: #0f6b6b;
  color: #fff;
}
.m-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.m-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #d97706;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 100px;
}
.m-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e6f4f4;
  color: #0f6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s;
}
.m-icon svg {
  width: 18px;
  height: 18px;
}
.m-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.m-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  font-weight: 300;
}
.m-card .m-bar {
  height: 3px;
  background: linear-gradient(90deg, #0f6b6b, #e6f4f4);
  border-radius: 2px;
  margin-top: 24px;
  width: 40px;
  transition: width 0.3s ease;
}
.m-card:hover .m-bar {
  width: 80px;
}
.footer-strip {
  margin-top: auto;
  background: #f9f8f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
}
.strip-values {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.strip-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid #e6f4f4;
  color: #0f6b6b;
  background: #e6f4f4;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: default;
}
.strip-tag:hover {
  background: #0f6b6b;
  color: #fff;
  border-color: #0f6b6b;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--slider-transition);
  z-index: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active .slide-bg {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(6, 14, 26, 0.93) 0%,
      rgba(6, 14, 26, 0.65) 52%,
      rgba(6, 14, 26, 0.18) 100%
    ),
    linear-gradient(to top, rgba(6, 14, 26, 0.72) 0%, transparent 55%);
  z-index: 1;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 40px;
  padding-top: 80px;
}
.slide-inner {
  max-width: 900px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms 420ms ease,
    transform 800ms 420ms ease;
}
.slide.active .slide-inner {
  opacity: 1;
  transform: translateY(0);
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e2c47a;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.slide-tag i {
  font-size: 10px;
}
.slide-title {
  font-family: var(--font-display-slider);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.slide-title .accent {
  color: #3fbdd4;
  font-style: italic;
}
.slide-desc {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.58);
  max-width: 530px;
  margin-bottom: 28px;
}
.slide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.slide-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
}
.slide-pill i {
  font-size: 9px;
  color: #3fbdd4;
}
.slide-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #c9a84c, #3fbdd4);
  z-index: 20;
  width: 0;
}






.slider-badge-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

/* Individual Card */
.slider-badge-{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

/* Icon Box */
.slider-badge- i{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(63,189,212,0.12);
  border: 1px solid rgba(63,189,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Text */
.slider-badge- p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.slider-badge- strong{
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px){
  .slider-badge-wrapper{
    grid-template-columns: 1fr;
  }
}


.slider-thumbs {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slider-thumb {
  width: 62px;
  height: 44px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.4;
  transition:
    border-color 0.3s,
    opacity 0.3s;
}
.slider-thumb.active {
  border-color: #e2c47a;
  opacity: 1;
}
.slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.slider-arrows {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  transform: scale(1.08);
}
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 8vw;
  z-index: 15;
  display: none !important;
}
.slider-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: #e2c47a;
  width: 50px;
}
.slider-counter {
  position: absolute;
  bottom: 100px;
  right: 8vw;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.slider-counter-cur {
  font-family: var(--font-display-slider);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.slider-counter-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 7px;
}
.slider-counter-tot {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 5px;
}
.slider-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: rgba(6, 14, 26, 0.84);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.slider-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  gap: 2px;
}
.slider-stat:last-child {
  border-right: none;
}
.slider-stat-num {
  font-family: var(--font-display-slider);
  font-size: 24px;
  font-weight: 700;
  color: #3fbdd4;
  line-height: 1;
}
.slider-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.toggle_btn {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  display: none;
}

.toggle_btn span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* When Open */
.toggle_btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(7.3px, 7.3px);
}

.toggle_btn.open span:nth-child(2) {
  opacity: 0;
}

.toggle_btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1000px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100vh;
    background-color: #0c182b;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .toggle_btn {
    display: flex !important;
    color: #ffffff;
  }
  .nav-links.open {
    transform: translateX(0);
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
  }

  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .featured-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-hero-inner {
    grid-template-columns: 1fr;
  }
  .ind-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .compliance-card.primary {
    grid-row: span 1;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .section,
  .about-hero,
  .services-hero,
  .team-hero,
  .contact-hero,
  .compliance-hero,
  .industries-hero,
  .presence-hero {
    padding: 60px 20px !important;
  }
  .profile-section,
  .hero-inner,
  .contact-body,
  .compliance-body,
  .services-grid-section,
  .industries-detail,
  .offices-section,
  .team-grid-section,
  .vm-section {
    padding: 60px 20px !important;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .credentials-inner {
    padding: 64px 20px;
  }
  .cred-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cred-since {
    text-align: left;
  }
  .cred-body {
    grid-template-columns: 1fr;
  }
  .cred-mega {
    position: static;
  }
  .cred-row::after {
    display: none;
  }
  .slider-arrows {
    display: none;
  }
  .slider-thumbs {
    display: none;
  }
  .slider-counter {
    right: 16px;
  }
  .slider-dots {
    left: 16px;
  }
  .slide-content {
    padding: 0 5vw;
    padding-top: 80px;
  }
  .slider-badge {
    display: none;
  }
  .slider-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-stat {
    padding: 12px;
  }
  footer {
    padding: 60px 20px 32px;
  }
}
@media (max-width: 750px) {
  .hero {
    padding: 44px 28px 40px;
  }
  .main {
    padding: 0 18px 60px;
  }
  .main_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vision-card {
    padding: 32px 24px;
  }
  .mission-cards {
    grid-template-columns: 1fr;
  }
  .m-card {
    padding: 24px 20px;
  }
  .footer-strip {
    padding: 18px 20px;
  }
  .hero-meta {
    display: none;
  }
  .c-panel {
    padding: 40px 16px;
  }
  .contact-shell{
    padding: 40px 10px;
  }
  .tooltip-box{
    width: 261px;
  }
  .risk-service-card{
    padding: 2rem 1rem;
  }
  .about-card {
    padding: 9px;
  }
}
@media (max-width: 700px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid .card:last-child {
    grid-column: auto;
  }
  .card:last-child .card-body {
    display: flex;
    flex-direction: column;
  }
  .card:last-child .card-tags {
    margin-top: 20px !important;
  }
  .section-wrap {
    padding: 60px 20px 80px;
  }
  .bottom-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .slide-title {
    font-size: 28px;
  }
  .slide-desc {
    font-size: 13px;
  }
}

.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

/* Tablet */
@media (max-width: 992px) {
  .responsive-grid {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .responsive-grid {
    gap: 20px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Large Tablets */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

/* ════════════════════════════════════════
   CTA · cream + bg image
════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1800&q=50&fit=crop")
    center/cover no-repeat;
  opacity: 0.08;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px;
}
.cta-card {
  background: #ffffff50;
  border-radius: var(--radius-lg);
  padding: 60px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-med);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-light));
}
.cta-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.cta-h {
  font-family: var(--font-display-slider);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.cta-h em {
  font-style: italic;
  color: var(--brand);
}
.cta-p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 480px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cta {
  padding: 13px 30px;
  border-radius: var(--radius);
  background: var(--brand);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cta:hover {
  background: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-med);
}
.btn-cta-ghost {
  padding: 12px 22px;
  border-radius: var(--radius);
  background: none;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cta-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(193, 231, 237, 0.15);
}

/* ── TEAM MASONRY GRID ── */
/* ── WRAPPER & GRID ── */
/* ===== YOUR EXACT :ROOT (Keep this in your global stylesheet) ===== */

/* ===== TEAM SECTION ===== */
.team-masonry-wrapper {
  max-width: 1400px;
  width: 100%;
  padding: 64px 24px;
  margin: 0 auto;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.team-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 28px;
}

/* ── CARD ── */
.tm {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.tm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.tm:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
  border-color: var(--brand);
}

.tm:hover::before { opacity: 1; }

/* ── HEADER (Initials + Badges) ── */
.tm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  gap: 12px;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}

.tm-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pale), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(32, 154, 168, 0.2);
}

.tm-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.tm-num-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2px 10px;
}

.tm-role-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
}

.tm-role-badge.dir {
  background: var(--accent-teal);
  box-shadow: 0 2px 6px rgba(26, 107, 107, 0.25);
}

/* ── BODY ── */
.tm-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.tm-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tm-name .tm-qual-pill {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 50px;
  width: fit-content;
}

.tm-qual-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tm-qual-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #0d373b;
  background: var(--brand-pale);
  border: 1px solid rgba(32, 154, 168, 0.25);
  border-radius:40px;
  padding: 3px 12px;
  white-space: nowrap;
  transition: all var(--transition);
}

.tm-qual-pill:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.tm-bio {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  flex: 1;
}

.tm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}

.tm-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 4px 10px;
  transition: all var(--transition);
}

.tm-tag:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .team-masonry-wrapper { padding: 40px 16px; }
  .team-masonry { grid-template-columns: 1fr; gap: 20px; }
  .tm-header { padding: 14px 16px 10px; }
  .tm-initials { width: 42px; height: 42px; font-size: 16px; }
  .tm-body { padding: 16px 16px 18px; }
  .tm-name { font-size: 19px; }
}

/* ── ACCESSIBILITY & REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .tm, .tm-tag, .tm-qual-pill { transition: none !important; }
  .tm:hover { transform: none !important; }
}





:root {
  --bg: #04101f;
  --fill: #091e3a;
  --stroke: #1a4470;
  --hover: #0a3d1f;
  --c: #00d4ff;
  --cglow: rgba(0, 212, 255, 0.35);
  --gold: #ffb347;
  --green: #3dffa0;
  --text: #c8e8ff;
  --muted: rgba(160, 210, 255, 0.5);
}

.bg-dots {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(0, 160, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 65% 65% at 50% 52%,
    rgba(0, 70, 150, 0.2) 0%,
    transparent 70%
  );
}
header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(4, 16, 31, 0.94);
  border-bottom: 1px solid rgba(0, 212, 255, 0.14);
  backdrop-filter: blur(12px);
}
.brand {
  font-family: "Orbitron", monospace;
  font-size: clamp(9px, 2.4vw, 13px);
  color: var(--c);
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 10px var(--c);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.12;
  }
}
.hstat {
  font-family: "Orbitron", monospace;
  font-size: clamp(8px, 1.8vw, 10px);
  color: var(--muted);
  letter-spacing: 0.1em;
  display: flex;
  gap: 14px;
}
.hstat b {
  color: var(--green);
}
#wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
}
#map {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}
/* State paths */
.state {
  fill: var(--fill);
  stroke: var(--stroke);
  stroke-width: 0.6;
  transition: fill 0.22s;
  cursor: default;
}
.state:hover {
  fill: var(--hover);
  stroke: #ff8c00;
  stroke-width: 1.2;
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.5));
}
/* City pins */
.city {
  cursor: pointer;
}
.ring {
  fill: none;
  stroke: var(--c);
  stroke-width: 1.1;
  animation: pulse 2.8s ease-out infinite;
  transform-origin: center;
}
.ring2 {
  fill: none;
  stroke: var(--c);
  stroke-width: 0.65;
  opacity: 0.45;
  animation: pulse 2.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    r: 5px;
    opacity: 0.95;
  }
  100% {
    r: 20px;
    opacity: 0;
  }
}
.dot {
  fill: var(--c);
  r: 4.2px;
  filter: drop-shadow(0 0 4px var(--c)) drop-shadow(0 0 8px var(--cglow));
  transition: r 0.15s;
}
.city:hover .dot {
  r: 6.5px;
}
.lbl {
  font-family: "Exo 2", sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  fill: var(--text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  paint-order: stroke fill;
  stroke: var(--bg);
  stroke-width: 3.5;
  stroke-linejoin: round;
  pointer-events: none;
}
/* Tooltip */
#tip {
  position: fixed;
  z-index: 100;
  background: rgba(2, 10, 24, 0.97);
  border: 1px solid var(--c);
  border-radius: 6px;
  padding: 10px 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.14s;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.2);
  white-space: nowrap;
}
#tip.show {
  opacity: 1;
}
.tname {
  font-family: "Orbitron", monospace;
  font-size: 12px;
  color: var(--c);
  letter-spacing: 0.1em;
}
.tcoord {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.tstatus {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 9.5px;
  color: var(--green);
  letter-spacing: 0.06em;
}
.tstatus::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.1s ease-in-out infinite;
}
/* Corners */
.crn {
  position: absolute;
  z-index: 20;
  width: 34px;
  height: 34px;
  pointer-events: none;
}
.ctlx {
  top: 4px;
  left: 4px;
  border-top: 1.5px solid rgba(0, 212, 255, 0.38);
  border-left: 1.5px solid rgba(0, 212, 255, 0.38);
}
.ctrx {
  top: 4px;
  right: 4px;
  border-top: 1.5px solid rgba(0, 212, 255, 0.38);
  border-right: 1.5px solid rgba(0, 212, 255, 0.38);
}
.cblx {
  bottom: 4px;
  left: 4px;
  border-bottom: 1.5px solid rgba(0, 212, 255, 0.38);
  border-left: 1.5px solid rgba(0, 212, 255, 0.38);
}
.cbrx {
  bottom: 4px;
  right: 4px;
  border-bottom: 1.5px solid rgba(0, 212, 255, 0.38);
  border-right: 1.5px solid rgba(0, 212, 255, 0.38);
}
#map-frame {
  position: relative;
  display: inline-flex;
  max-width: 600px;
  width: 100%;
}

/* =========================
   SLIDER CONTAINER
========================= */
.client {
  padding: 0px 0 100px 0;
  background: #fff;
}
.slider {
  margin-top: 40px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

/* =========================
   LEFT + RIGHT GRADIENT
========================= */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.slider::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* =========================
   TRACK
========================= */
.slide-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 40s linear infinite;
}

/* =========================
   LOGO ITEM
========================= */
.client-logo-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   IMAGE STYLE
========================= */
.client-logo-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0 30px;
  /* black & white default */
  filter: grayscale(100%);
  opacity: 0.9;

  /* smooth animation */
  transition: all 0.4s ease;

  /* prevent layout shift */
  border: 1px solid transparent;
  border-radius: 6px;
}

/* =========================
   HOVER EFFECT
========================= */
.client-logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   PAUSE ON HOVER
========================= */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* =========================
   SCROLL ANIMATION
========================= */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .client-logo-slide {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .client-logo-slide {
    width: 110px;
  }
}

.client_se {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}



:root {
  --is-navy: #0a1628;
  --is-navy-mid: #112240;
  --is-brand: #209aa8;
  --is-brand-light: #4fb3bf;
  --is-brand-pale: #c1e7ed;
  --is-white: #ffffff;
  --is-gray-100: #f0ede8;
  --is-gray-200: #ddd8d0;
  --is-radius-lg: 12px;
  --is-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --is-shadow-soft: 0 2px 16px rgba(10, 22, 40, 0.1);
  --is-shadow-hard: 0 12px 40px rgba(10, 22, 40, 0.22);
}

.is-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
}

/* Bento grid */
.is-bento-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

/* Card */
.is-card {
  position: relative;
  border-radius: var(--is-radius-lg);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--is-shadow-soft);
  transition:
    box-shadow var(--is-transition),
    transform var(--is-transition);
  background: var(--is-navy-mid);
}
.is-card:hover {
  box-shadow: var(--is-shadow-hard);
}
/* ================================
   IMPORTANT FIX (ADD THIS)
================================ */
.is-card {
  position: relative;   /* REQUIRED for absolute image */
  overflow: hidden;
  width: 100%;
}

/* Sizes */
.is-card-w100 {
  flex: 1 1 100%;
  height: 280px;
}
.is-card-w50 {
  flex: 1 1 calc(50% - 5px);
  height: 260px;
}
.is-card-w33 {
  flex: 1 1 calc(33.333% - 7px);
  height: 240px;
}

/* Image */
.is-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: transform var(--is-transition);
  z-index: 1;
}
.is-card:hover .is-card-img {
  transform: scale(1.07);
}

/* Overlay */
.is-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0) 40%,
    rgba(10, 22, 40, 0.68) 100%
  );
  pointer-events: none;
}

/* Top accent line */
.is-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--is-brand), var(--is-brand-light));
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-card:hover::before {
  transform: scaleX(1);
}

/* Text */
.is-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 18px;
  z-index: 3;
}

.is-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--is-white);
  line-height: 1.2;
  background: rgba(42, 160, 173, 0.582);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 14px;
}

/* Dot */
.is-card-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--is-brand);
  margin-bottom: 6px;
}

/* ================================
   MOBILE RESPONSIVE ONLY (≤700px)
================================ */
@media (max-width: 700px) {

  /* FIXED ROW (NO column) */
  .is-bento-row {
    display: flex;
    flex-wrap: wrap;   /* ✅ FIX */
    gap: 10px;
    width: 100%;
  }
.is-wrapper {
  padding: 30px 10px;
}
  /* Full width cards */
  .is-card-w100,
  .is-card-w50,
  .is-card-w33 {
    flex: 1 1 100%;
    height: 200px;   /* IMPORTANT */
  }

  /* Remove hover zoom on mobile */
  .is-card:hover .is-card-img {
    transform: scale(1);
  }

  /* Body */
  .is-card-body {
    padding: 12px 14px;
  }

  /* Title */
  .is-card-title {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(42, 160, 173, 0.6);
    font-weight: 600;
  }

  /* Dot */
  .is-card-dot {
    width: 5px;
    height: 5px;
    margin-bottom: 5px;
  }

  /* Header */
  .is-header h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  /* CTA */
  .cta-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cta-inner {
    padding: 30px 15px;
  }

}

