/* ========================================
   FinEssense — Global Styles
   Fonts: Playfair Display (headings) | Plus Jakarta Sans (body)
   ======================================== */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* === DESIGN TOKENS === */
:root {
  --navy: #0C1B33;
  --navy-mid: #152744;
  --blue: #1D4ED8;
  --blue-mid: #2563EB;
  --blue-light: #DBEAFE;
  --blue-pale: #EFF6FF;
  --green: #059669;
  --text-dark: #0F172A;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg-light: #F9FAFB;
  --bg-off: #F3F4F0;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.bg-light {
  background: var(--bg-light);
}

.bg-navy {
  background: var(--navy);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  color: var(--text-body);
  line-height: 1.8;
}

em {
  font-style: italic;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
}

strong {
  font-weight: 700;
}

/* === SECTION LABEL === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue-mid);
  flex-shrink: 0;
}

/* === SECTION HEADER === */
.section-header {
  margin-bottom: 56px;
}

.section-header p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 16px auto 0;
}

.section-header.centered .section-label {
  justify-content: center;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 13px;
  height: 13px;
  background: var(--blue-mid);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links>li>a {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-mid);
  transition: width var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--navy);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  width: 100%;
}

.nav-links .btn-nav {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-links .btn-nav::after {
  display: none !important;
}

.nav-links .btn-nav:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* === HERO — HOME === */
.hero {
  padding: 88px 0 104px;
  background: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 500px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
  padding-left: 32px;
  padding-right: 0;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Hero Image */
.hero-image-wrap {
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: 36px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  min-width: 230px;
  border: 1px solid var(--border-light);
}

.float-line {
  width: 24px;
  height: 2px;
  background: var(--blue-mid);
  margin-bottom: 10px;
}

.hero-float-card h5 {
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

/* === SECTION: FULL SPECTRUM ADVISORY === */
.spectrum-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

/* .spectrum-header .left h2 {
  max-width: 380px;
} */

.spectrum-header .left p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 440px;
  line-height: 1.75;
}

.view-all {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
}

.view-all:hover {
  color: var(--blue-mid);
  border-color: var(--blue-mid);
  gap: 10px;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Service Preview Card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  transition: all var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.svc-card-line {
  width: 28px;
  height: 2px;
  background: var(--border);
  margin-bottom: 18px;
  transition: background var(--transition);
}

.svc-card:hover .svc-card-line {
  background: var(--blue-mid);
}

.svc-card h4 {
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === SECTION: DUAL DNA === */
.dna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.dna-left h2 {
  margin-bottom: 20px;
}

.dna-left>p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 1rem;
}

.dna-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dna-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.dna-icon-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
}

.dna-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.dna-item h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.dna-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.dna-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dna-num-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.dna-num-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
}

.dna-num-card:nth-child(2) {
  margin-top: 28px;
}

.dna-num-card:nth-child(4) {
  margin-top: -28px;
}

.dna-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--blue-mid);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.dna-num-card h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.dna-num-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === SECTION: PARTNER === */
.partner-heading {
  text-align: center;
  margin-bottom: 52px;
}

.partner-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all var(--transition);
}

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

.partner-icon {
  color: var(--blue-mid);
  margin-bottom: 20px;
}

.partner-icon svg {
  width: 36px;
  height: 36px;
}

.partner-card h4 {
  margin-bottom: 12px;
}

.partner-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* === SECTION: IMAGE BREAK === */
.image-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 27, 51, 0.82) 0%, rgba(12, 27, 51, 0.35) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.image-break-content {
  padding: 0 0 0 60px;
  max-width: 520px;
}

.image-break-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 20px;
}

.image-break-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

/* === SECTION: CTA === */
.cta-section {
  background: var(--navy);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.cta-label::before,
.cta-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.cta-section h2 {
  color: var(--white);
  max-width: 660px;
  margin: 0 auto 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 44px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* === FOOTER === */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 72px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 22px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  /* color: rgba(255, 255, 255, 0.45); */
  color:#fff;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /* color: rgba(255, 255, 255, 0.35); */
  color:#fff;
  margin-bottom: 22px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  /* color: rgba(255, 255, 255, 0.65); */
  color:#fff;
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--white);
}

.footer-contact-info p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.footer-coords {
  font-size: 0.875rem;
  color: var(--blue-mid);
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tags {
  display: flex;
  gap: 28px;
}

.footer-tags span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero p {
  max-width: 580px;
  margin-top: 20px;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  transition: all var(--transition);
}

.text-link:hover {
  color: var(--blue-mid);
  gap: 13px;
}

/* FinEssense Difference */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

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

.diff-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--blue-light);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1;
}

.diff-card h4 {
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Philosophy */
.philosophy-section {
  background: var(--navy);
  background-image: url(../images/f2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  padding: 100px 0;
}
.philosophy-section {
    position: relative;
    padding: 100px 0;

    background:
        linear-gradient(
            rgba(12, 27, 51, 0.82),
            rgba(12, 27, 51, 0.82)
        ),
        url("../images/f2.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.philosophy-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.phi-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.phi-label::before,
.phi-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 28px;
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: rgba(37, 99, 235, 0.25);
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
  font-style: normal;
  pointer-events: none;
}

.philosophy-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* Team Section */
.team-section {
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 100%;
}

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

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

.team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #E8EDF5 0%, #CDD5E4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.team-photo-placeholder svg {
  width: 52px;
  height: 52px;
  color: #8E9BB5;
}

.team-photo-placeholder span {
  font-size: 0.8125rem;
  color: #8E9BB5;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.team-photo-placeholder .upload-hint {
  font-size: 0.75rem;
  color: #A0ABBB;
}

.team-info {
  padding: 26px 28px 28px;
}

.team-info h4 {
  margin-bottom: 4px;
  font-size: 1.125rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

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

/* === SERVICES PAGE === */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-icon {
  color: var(--blue-mid);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.approach-left h2 {
  margin-bottom: 20px;
}

.approach-left>p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
}

.approach-left>p+p {
  margin-bottom: 36px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: all var(--transition);
}

.step:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--blue-mid);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 3px;
}

.step-body h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === TRANSACTIONS PAGE === */
.transactions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.txn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all var(--transition);
}

.txn-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.txn-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.txn-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-blue {
  background: var(--blue-pale);
  color: var(--blue);
}

.badge-navy {
  background: #E4E9F2;
  color: var(--navy);
}

.badge-green {
  background: #ECFDF5;
  color: #065F46;
}

/* Ongoing table */
.ongoing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.t-head {
  display: grid;
  grid-template-columns: 2.5fr 1fr 2fr;
  gap: 16px;
  padding: 14px 28px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.t-head span {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.t-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 2fr;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  transition: background var(--transition);
}

.t-row:last-child {
  border-bottom: none;
}

.t-row:hover {
  background: var(--bg-light);
}

.t-name {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.t-cat {}

.t-type {
  font-size: 0.8125rem;
  color: var(--blue-mid);
  font-weight: 600;
}

/* Marquee operational */
.marquee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.marquee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.marquee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.marquee-card .m-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.marquee-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.marquee-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 88px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 18px;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.85;
  font-size: 1rem;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
}

.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 52px;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.form-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.9375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success.show {
  display: block;
}

.form-success p {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-up.delay-5 {
  transition-delay: 0.5s;
}



.execution-process {
  background: #fafafa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.process-card {
  position: relative;
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid #e8edf5;
  transition: .35s;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ef4b3f;
}

.process-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 55px;
  font-weight: 700;
  color: #edf2f7;
  line-height: 1;
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #eef4ff;
  color: #2563eb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  margin-bottom: 25px;
}

.process-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.process-card p {
  color: #666;
  line-height: 1.8;
}



.services-preview-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 60px;
  align-items: start;
}

.sector-content {
  position: sticky;
  top: 120px;
}

.sector-content h2 {
  margin: 18px 0;
}

.sector-content p {
  margin: 20px 0 35px;
  color: var(--text-muted);
  line-height: 1.8;
}

.services-preview-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}



.stat-icon {
  width: 52px;
  height: 52px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
  font-size: 20px;
  background: #fff;
}

.hero-float-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #203864;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f5f8ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 52% 43%;
  gap: 5%;
  align-items: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item {
  flex: 1;
  padding: 12px 15px;
  border-right: none;
  text-align: center;
}
.hero-float-card{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    width: 350px;
}
.team-section{
    padding:100px 0;
    background:#f8fafc;
}

.team-card{
    display:flex;
    gap:28px;
    height:100%;
    border:1px solid #e8edf5;
    transition:.35s;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 28px 32px;
}

.team-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.team-image{
    width:400px;
    flex-shrink:0;
}

.team-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:14px;
}

.team-content{
    flex:1;
}

.team-content h3{
    margin:0;
    font-size:26px;
    color:#0f172a;
}

.designation{
    display:inline-block;
    margin:10px 0 18px;
    color:#1d4ed8;
    font-weight:600;
}

.team-points{
    margin:0;
    padding-left:18px;
}

.team-points li{
    margin-bottom:10px;
    color:#64748b;
    line-height:1.7;
}

.team-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    color:#1d4ed8;
    transition:.3s;
    text-decoration:none;
}

.team-social a:hover{
    background:#1d4ed8;
    color:#fff;
}
.nav-container ol, .nav-container ul {
    margin-top: 0;
    margin-bottom: 0px;
}
.footer-logo{
  background: #fff;
    padding: 10px;
    width: 200px;
}
.btn-linkedin{
background-color: var(--blue);
color: #fff;
text-transform: capitalize;

}
.footer-contact-info a{
  color: var(--bg-light);
}
.text-white{
  color:#ffffff;
}
.contact-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: center;
}