
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #274182;
  --blue-accent: #2C83BA;
  --text-dark: #191C1E;
  --text-mid: #45464D;
  --text-light: #6b7a99;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f4f6fb;
  --bg-gray: #eef0f6;
  --card-border: #e2e2e2;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --transition: 0.25s ease;
}



html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 0 30px;
  height: 80px;
  border: 1px solid #e2e2e2;
  top: 0;
  z-index: 1000;
  position: relative; 
}
#navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}


.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  cursor: pointer;
}

.logo-img {
  height: 60px;  
  width: auto;
  object-fit: contain;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}




.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #274182;
}

.nav-link.active {
  color: #274182;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #274182;
  border-radius: 2px 2px 0 0;
}


.enquiry-btn {
  background-color: #274182;
  color: #ffffff;
  border: none;
  padding: 0 45px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  
}

.enquiry-btn:hover {
  background-color: #274182;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #274182;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .enquiry-btn {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 30px;
    width: 100%;
    display: block;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    border-left: 4px solid #274182;
    padding-left: 26px;
  }
}


.footer {
  background-color: #274182;
  color: #ffffff;
  padding: 50px 60px 30px;
}


.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}


.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
}




.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}


.linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #1da8b8;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.linkedin-btn:hover {
  background-color: #179aaa;
  transform: scale(1.08);
}


.footer-spacer {
  flex: 1;
}


.footer-links {
  min-width: 140px;
}

.links-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}





.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}


@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 24px;
  }

  .footer-main {
    flex-direction: column;
    gap: 36px;
  }

  .footer-spacer {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
  }
}


.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

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



.hero {
  position: relative;
  height: 500px;
  background: url('/assets/images/about_hero.png') no-repeat center / cover;
  display: flex;
  align-items: flex-end;
  padding-bottom: 180px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 680px;
}


.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 26px;
  
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover { background: var(--blue-accent); transform: translateY(-2px); }


.legacy-section {
  padding: 90px 0 80px;
  background: var(--bg-white);
}

.legacy-body {
  max-width: 1200px;
}

.legacy-body p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}


.compliance-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-label-center {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.compliance-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 48px;
  font-family: var(--font-ui);
}

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

.compliance-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 22px;
  
}

.compliance-card:hover {
  box-shadow: 0 8px 30px rgba(26,46,90,0.1);
  transform: translateY(-3px);
}

.card-icon {
  color: var(--navy);
  margin-bottom: 14px;
  opacity: 0.85;
}

.compliance-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.compliance-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  font-family: var(--font-ui);
}


.leadership-section {
  padding: 90px 0;
  background: var(--bg-white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 45px;
  align-items: center;
}

.leader-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 46, 90, 0.088);
}

.leader-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 20%;
}

.leader-content .section-eyebrow { margin-bottom: 8px; }

.leader-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.leader-title-role {
  font-size: 15px;
  color: var(--text-mid);
  font-family: var(--font-body);
  margin-bottom: 18px;
}


.leader-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.leader-content blockquote {
  border-left: 3px solid var(--navy);
  padding-left: 18px;
  margin: 22px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.7;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.btn-linkedin:hover { background: var(--blue-accent); transform: translateY(-2px); }


.anchors-section {
  padding: 90px 0;
  background: var(--bg-gray);
}

.anchors-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.anchors-sub {
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-ui);
  margin-bottom: 40px;
}

.anchors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.anchor-card {
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.anchor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.anchor-dark {
  background: var(--navy);
  color: white;
}

.anchor-mid {
  background: var(--navy);
  color: white;
}

.anchor-blue {
  background: var(--blue-accent);
  color: white;
}

.anchor-wide {
  grid-column: span 1;
}


.anchor-card:nth-child(4) { grid-column: span 1; }
.anchor-card:nth-child(5) { grid-column: span 2; }

.anchor-icon {
  margin-bottom: 16px;
  opacity: 0.9;
}

.anchor-card h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.anchor-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-family: var(--font-ui);
}

.timeline-section {
  background-color: var(--navy);
  width: 100%;
  padding: 80px 30px;
}

.header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--card-border);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}


.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}


.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--card-border);
  transform: translateX(-50%);
  z-index: 0;
}


.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-bottom: 48px;
  z-index: 1;
}


.timeline-item.left {
  justify-content:center;
  padding-right:calc(50% + 20px);
  
}


.timeline-item.right {
  justify-content: center;
  padding-left: calc(50% + 20px);
}

.timeline-item.left .card {
border-right: 6px solid var(--blue-accent);
}

.timeline-item.right .card {
border-left: 6px solid var(--blue-accent);
}
.card {
  background: #ffffff;
  color: #1a1a2e;
  padding: 28px 28px 32px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;

}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.quarter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a6ec2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 12px;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}


.dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 2px solid var(--card-border);
  z-index: 2;
  flex-shrink: 0;
}


.timeline-item {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.55s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.25s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 640px) {
  .timeline-line {
    left: 16px;
  }

  .timeline-item.left,
  .timeline-item.right {
    padding-left: 48px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .dot {
    left: 16px;
  }

  .card {
    max-width: 100%;
  }
}



.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 220px;
  margin-bottom: 20px;
  font-family: var(--font-ui);
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  color: white;
  transition: background var(--transition);
}

.footer-linkedin:hover { background: var(--blue-accent); }

.footer-links-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-ui);
  transition: color var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-ui);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--font-ui);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: white; }

.footer-bottom-links a strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s 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; }


@media (max-width: 900px) {
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-image-wrap img { height: 280px; }
  .anchors-grid { grid-template-columns: 1fr 1fr; }
  .anchor-card:nth-child(5) { grid-column: span 2; }
  .hero-title { font-size: 38px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .compliance-grid { grid-template-columns: 1fr; }
  .anchors-grid { grid-template-columns: 1fr; }
  .anchor-card:nth-child(5) { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-title { font-size: 30px; }
  .section-heading, .anchors-title { font-size: 32px; }
  .leader-image-wrap img { height: 580px; }
}
