:root {
  --dark: #020617;
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --gray: #64748b;
  --light: #f8fafc;
  
  --brand-blue: #2596be;
  --brand-green: #7fc353;
  --card-text-dark: #0f172a;
  --card-text-light: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #0f172a;
  background: #ffffff;

    line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}


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

.section {
  padding: 60px 0;
 
}
 .top{
	 background-color: lightgrey;
 }
.section.alt {
  background: var(--light);
  
}
.section-leader {
  background-color: lightgrey;
}
.section.glass {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}
a {
  text-decoration: none;
}
/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

/* .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
} */

.container {
  max-width: 1200px;
  margin: auto;
 padding: 0px 20px;
}
.logo {
  height: 40px;
}
img {
  max-width: 100%;
  display: block;
}
  margin-left: 32px;
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
}

.nav a.active {
  color: var(--blue);
} */
/* Menu */
.main-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}


.nav-menu a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  /*color: #334155;*/
    color: var(--blue);
  text-decoration: none;
  position: relative;
}

.nav-menu a:hover,
.nav-menu .active {
  /*color: #0f172a;*/
  
}
/* HERO */
.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: white;
}


.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgba(30, 58, 138, .85), rgb(126 129 143 / 90%));
}


.hero-content {
  position: relative;
  max-width: 900px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.1;
}

.hero span {
  color: var(--teal);
}
.hero h1 span {
  color: var(--brand-green);
}

.hero-bg {
  position: relative;
  padding: 80px 0;
  background-image: url("../assets/images/head.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
}

/* TYPOGRAPHY */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--teal);
}

.lead {
  font-size: 18px;
  font-weight: 500;
  color: #334155;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
}

.split.reverse {
  grid-template-columns: .8fr 1.2fr;
}

/* STATS */
.stat-cards {
  display: grid;
  gap: 24px;
}

.stat {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f2fe, #ccfbf1);
}

.stat h3 {
  font-size: 36px;
  margin: 0;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 32px;
}

.service {
  padding: 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

.service.highlight {
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  border: 1px solid var(--teal);
}

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}

.step {
  padding: 24px;
  border-left: 4px solid var(--teal);
  background: white;
  font-weight: 500;
}

/* LEADERSHIP */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 32px;
}

.leader {
  padding: 40px;
  border-radius: 20px;
  background: var(--light);
}

/* CTA */
.cta {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: white;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: var(--teal);
  color: #022c22;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 32px;
  text-align: center;
}


.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}


/* .header-container {
  max-width: 1280px;
  margin: auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}




/* Brand */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 70px;
}

.brand-name {
	   color: var(--blue);
  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 22px;          /* Increased height */
  font-weight: 700;         /* Strong but elegant */
  line-height: 1.6;      /*   Tight, premium spacing 
 /* letter-spacing: 0.3px; Subtle polish */
  /*color: #020617;*/

 /*  white-space: nowrap; */
}

.nav-menu a:hover,
.nav-menu .active {
  /*color: #0f172a;*/
  
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 220px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #334155;
}

.dropdown li a:hover {
  background: #f1f5f9;
}
/* PHILOSOPHY SECTION */
.philosophy-section {
  padding: 60px 0;
  background: #ffffff;
  background-color: lightgrey;
}

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

/* Image */
.philosophy-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.15);
}

/* Content */
.philosophy-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #020617;
}

.philosophy-content h2 span {
  color: var(--brand-green);
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-image {
    order: 2;
  }

  .philosophy-content {
    order: 1;
  }
}
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* WHAT WE CAN DO – MODERN */
.what-we-do-modern {
  padding: 0px 0;
  background: #ffffff;
}

.what-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: center;
}

/* Content */
.what-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #020617;
}

.what-content h2 span {
  color: var(--brand-green);
}

.what-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 18px;
}

.what-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 14px;
}

/* Visual Pillars */
.what-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #f8fafc;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.06);
  font-weight: 600;
  color: #020617;
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateX(6px);
}

.pillar .icon {
  font-size: 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .what-grid {
    grid-template-columns: 1fr;
  }
}

.ct-history--timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CENTER LINE */
.ct-history--timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(30,58,138,.25),
    rgba(45,212,191,.25)
  );
  transform: translateX(-50%);
}

/* ITEMS */
.ct-history--item {
  position: relative;
  width: 50%;
  padding: 26px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2,6,23,.08);
  margin-bottom: 48px;
}

/* LEFT / RIGHT ALTERNATION */
.ct-history--item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.ct-history--item:nth-child(even) {
  left: 50%;
}

/* NUMBER */
.ct-history--item h3 {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-blue), #2dd4bf);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

/* CONNECTOR DOT */
.ct-history--item::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 14px;
  height: 14px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45,212,191,.15);
}

.ct-history--item:nth-child(odd)::after {
  right: -7px;
}

.ct-history--item:nth-child(even)::after {
  left: -7px;
}

/* MOBILE */
@media (max-width: 900px) {
  .ct-history--timeline::before {
    left: 20px;
  }

  .ct-history--item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    text-align: left;
  }

  .ct-history--item::after {
    left: 13px !important;
  }
}
/* START LABEL – CENTERED ON SPINE */
.ct-history--start {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.ct-history--start span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e3a8a;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(2,6,23,.15);
}

/* Vertical line continues through start */
.ct-history--start::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(30,58,138,.25),
    rgba(45,212,191,.25)
  );
  transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
  .ct-history--start::before {
    left: 20px;
    transform: translateY(-50%);
  }

  .ct-history--start span {
    margin-left: 40px;
  }
}
.leader-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 28px 32px;
  border: 5px solid rgba(45,212,191,.6); /* Green outline */
  border-color: var(--brand-green);
  text-align: center;
  box-shadow: 0 20px 40px rgba(2,6,23,.08);
  transition: all .35s ease;
}

/* Hover polish */
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(2,6,23,.12);
}

/* ICON ABOVE CARD */
.leader-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(45,212,191,.25);
}

.leader-icon i {
  font-size: 22px;
  color: #1e3a8a; /* Blue from logo */
}

/* IMAGE */
.leader-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* TEXT */
.leader-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #020617;
}

.leader-role {
  font-size: 13px;
  font-weight: 600;
  color: #1e3a8a;
  display: block;
  margin-bottom: 12px;
}

.leader-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


.leader-icon svg {
  width: 26px;
  height: 26px;
  fill: #1e3a8a; /* Logo blue */
}
.leader-icon svg {
  width: 26px;
  height: 26px;
  fill: #1e3a8a; /* Logo blue */
}

.leader-card:hover .leader-icon svg {
  transform: scale(1.08);
  transition: transform .3s ease;
}

.leader-card {
  text-align: center;
}

/* Center image block */
.leader-card img {
  display: block;
  margin: 0 auto 16px auto; /* center horizontally */
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}
/* =====================================================
   MOBILE RESPONSIVENESS FIX – ABOUT PAGE
===================================================== */

/* ---------- GENERAL ---------- */
/* @media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }
} */



/* ---------- HERO ---------- */
@media (max-width: 768px) {
  .hero,
  .hero-bg {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .lead {
    font-size: 16px;
  }
}

/* ---------- SPLIT LAYOUTS ---------- */
@media (max-width: 900px) {
  .split,
  .split.reverse,
  .philosophy-grid,
  .what-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .philosophy-image {
    order: -1;
  }
}

/* ---------- STATS ---------- */
@media (max-width: 640px) {
  .stat {
    padding: 24px;
  }

  .stat h3 {
    font-size: 28px;
  }
}

/* ---------- WHAT WE DO ---------- */
@media (max-width: 768px) {
  .what-content h2 {
    font-size: 28px;
  }

  .what-content .lead {
    font-size: 16px;
  }

  .pillar {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ---------- LEADERSHIP ---------- */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    padding: 48px 20px 28px;
  }

  .leader-card p {
    font-size: 14px;
  }
}

/* ---------- TIMELINE (CRITICAL FIX) ---------- */
@media (max-width: 900px) {
  .ct-history--timeline::before {
    left: 20px;
    transform: none;
  }

  .ct-history--item {
    width: 100%;
    left: 0 !important;
    padding: 20px 20px 20px 60px;
    text-align: left;
    margin-bottom: 32px;
  }

  .ct-history--item::after {
    left: 13px !important;
    right: auto;
  }

  .ct-history--item h3 {
    margin-bottom: 10px;
  }
}

/* ---------- START LABEL ---------- */
@media (max-width: 900px) {
  .ct-history--start::before {
    left: 20px;
    transform: translateY(-50%);
  }

  .ct-history--start span {
    margin-left: 40px;
  }
}

/* ---------- CTA ---------- */
@media (max-width: 768px) {
  .cta {
    padding: 80px 20px;
  }

  .cta-btn {
    padding: 14px 32px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 640px) {
  .footer {
    font-size: 13px;
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
}



/* =========================
   LEADERSHIP HOVER / CLICK
========================= */

.leader-card {
  cursor: pointer;

}

/* Image polish */
.leader-card img {
  transition: transform .6s ease, filter .6s ease;
}

/* Hidden bio by default */
.leader-bio {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .6s ease;
}

/* Hover / Active reveal */
.leader-card:hover img,
.leader-card.active img {
  transform: scale(1.08);
  filter: brightness(0.75);
}

.leader-card:hover .leader-bio,
.leader-card.active .leader-bio {
  max-height: 420px; /* enough for long bios */
  opacity: 1;
  margin-top: 14px;
}

/* Bio text animation */
.leader-bio p {
  transform: translateY(12px);
  transition: transform .6s ease;
}

.leader-card:hover .leader-bio p,
.leader-card.active .leader-bio p {
  transform: translateY(0);
}


/* =========================
   LEADERSHIP MODAL
========================= */

.leader-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.leader-modal.active {
  display: flex;
}

.leader-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 640px;
  border-radius: 18px;
  padding: 32px;
  position: relative;
  box-shadow: 0 40px 80px rgba(2,6,23,.25);
  animation: modalFade .35s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.modal-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-header h3 {
  margin: 0;
  font-size: 22px;
  color: #020617;
}

.modal-header span {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a8a;
}

/* Body */
.modal-body {
  max-height: 50vh;
  overflow-y: auto;
}

.modal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Close */
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #64748b;
}

/* Read Bio button */
.read-bio-btn {
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid var(--brand-green);
  background: transparent;
  color: #1e3a8a;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.read-bio-btn:hover {
  background: var(--brand-green);
  color: #020617;
}
/* =========================
   FRAMEWORK WITH ARROWS
========================= */

.framework-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 24px;
  position: relative;
   direction: ltr;
}

.framework-item {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(2,6,23,.08);
  font-size: 15px;
  color: #334155;
  position: relative;
}

/* Number badge */
.framework-item span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Base arrow style */
.framework-item::after,
.framework-item::before {
  font-family: inherit;
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-blue);
  line-height: 1;
  display: inline-block;
  position: absolute;
}

/* Row 1 → Right arrow */
.framework-item::after {
  content: "➤";
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  animation: arrow-move-right 1s infinite ease-in-out;
}

/* Row 2 → Left arrows 6–9 only */
.framework-item:nth-child(n+6):not(:last-child)::after {
  content: "➤";
  left: -28px;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
  animation: arrow-move-left 1s infinite ease-in-out;
}

/* Item 9 left arrow */
.framework-item:nth-child(9)::after {
  content: "➤";
  left: -28px;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
  animation: arrow-move-left 1s infinite ease-in-out;
  display: block !important;
}

/* Row break → Down arrow after 5 */
.framework-item:nth-child(5)::before {
  content: "➤";
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%) rotate(90deg);
  animation: arrow-move-down 1s infinite ease-in-out;
}

/* Remove arrow after item 5 */
.framework-item:nth-child(5)::after {
  display: none;
}
.framework-item:nth-child(6)::after {
  display: none;
}
/* Remove any arrow after last item */
.framework-item:last-child::after {
  display: none !important;
}

/* -----------------------------
   Animations
-------------------------------*/
@keyframes arrow-move-right {
  0%   { transform: translateY(-50%) rotate(0deg); }
  50%  { transform: translateY(-50%) translateX(4px) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

@keyframes arrow-move-left {
  0%   { transform: translateY(-50%) rotate(180deg); }
  50%  { transform: translateY(-50%) translateX(-4px) rotate(180deg); }
  100% { transform: translateY(-50%) rotate(180deg); }
}

@keyframes arrow-move-down {
  0%   { transform: translateX(-50%) translateY(0) rotate(90deg); }
  50%  { transform: translateX(-50%) translateY(4px) rotate(90deg); }
  100% { transform: translateX(-50%) translateY(0) rotate(90deg); }
}
