:root{
  --primary: #1B4F72;
  --accent: #E67E22;
  --muted: #2E4053;
  --bg: #F8F9F9;
  --surface: #ffffff;
  --radius-lg: 16px;
  --container: 1200px;
  --gap: 24px;
  --nav-height: 78px;
  --transition: 0.28s ease;
  --shadow-1: 0 6px 20px rgba(16,24,40,0.08);

  /* Highlight color used in hero */
  --highlight: #4ba3ff;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}


/* =========================================================
   GLOBAL ANTI-HORIZONTAL-OVERFLOW PACK (ALL PAGES)
   Paste near the top of style.css (after reset)
========================================================= */

/* 1) Always prevent sideways scroll */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) Consistent sizing everywhere */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 3) Media can never overflow */
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4) Fix the classic mobile “100vw causes overflow” issue */
:root {
  --safe-vw: 100%;
}
.full-bleed,
[class*="vw"],
[style*="100vw"] {
  max-width: 100%;
}

/* If you personally used width:100vw anywhere, convert it to 100% (recommended).
   But this helps protect you even if you miss one. */
body {
  position: relative;
}


/* GLOBAL CONTAINER — EVERY SECTION ALIGNED PERFECTLY */
.container,
.navbar-container,
.values-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container,
  .navbar-container,
  .values-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* PAGE WRAPPER */
.page-wrapper { min-height: 100vh; }

/* =========================
   NAVBAR (GLOBAL)
========================= */
.navbar{
  width:100%;
  position:sticky;
  top:0;
  height:78px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#071a24 0%,#0d2a3a 100%);
  z-index:4000; /* keep above overlay */
}

.navbar-container{
  max-width:1250px;
  margin:0 auto;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
}

.navbar-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
  z-index:4500;
}

.navbar-logo-img{ width:32px; height:32px; }

.logo-text{ line-height:1.1; }

.navbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
  z-index:4500;
}

.btn-primary{
  background:#1b4f72;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hamburger */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  flex-direction:column;
  gap:4px;
  padding:8px;
}

.menu-line{
  width:22px;
  height:2px;
  background:#ffffff;
  display:block;
  transition:all 0.3s ease;
}

/* =========================
   OVERLAY (GLOBAL)
   ✅ NO filter / NO blur / NO tint
   ✅ Only used to close on outside click
========================= */
.nav-overlay{
  position:fixed;
  inset:0;
  background:transparent;     /* IMPORTANT: no dark/white overlay */
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease;
  z-index:2000;               /* BELOW menu + below navbar */
}

.nav-overlay.show{
  opacity:1;
  pointer-events:auto;
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width:1025px){
  .navbar-menu{
    display:flex;
    gap:32px;
    align-items:center;
  }

  .nav-link{
    color:#cfe4f4;
    font-size:16px;
    text-decoration:none;
    padding:10px 0;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
  }

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

  .nav-item{ position:relative; }

  .mega-dropdown{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    background:rgba(13,42,58,0.96);
    border-radius:12px;
    padding:20px;
    opacity:0;
    visibility:hidden;
    display:flex;
    gap:30px;
    transition:0.3s;
  }

  .nav-item:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
  }

  .mega-col{ flex:1; }

  .mega-col h4{
    color:#9cc7e1;
    font-size:12px;
    margin-bottom:8px;
    text-transform:uppercase;
  }

  .mega-col a{
    color:#e0edf7;
    display:block;
    padding:8px 0;
    text-decoration:none;
    font-size:14px;
  }

  .mega-col a:hover{ color:#fff; }
}

/* =========================
   MOBILE ONLY — MATCH YOUR SERVICES-PRICING
   ✅ Menu sits BELOW navbar (top: 78px)
   ✅ Links clickable
   ✅ Dropdown opens with .nav-item.open
========================= */
@media (max-width:1024px){

  .menu-toggle{ display:flex; }

  /* Make logo + buttons smaller on mobile */
  .logo-text{ font-size:14px; }

  .btn-primary{
    padding:8px 14px;
    font-size:14px;
    border-radius:10px;
  }

  .navbar-actions{ gap:10px; }

  /* MENU PANEL */
  .navbar-menu{
    position:fixed;
    top:78px;                      /* ✅ BELOW NAVBAR */
    right:0;
    width:min(85vw,360px);
    height:calc(100dvh - 78px);    /* ✅ fits remaining screen */
    background:#0b1220;
    overflow-y:auto;

    z-index:3000;                  /* ✅ ABOVE overlay */
    transform:translateX(105%);
    transition:transform 0.25s ease;

    display:flex;
    flex-direction:column;

    padding:0;                     /* no weird offsets */
    pointer-events:auto;           /* ✅ clickable */
  }

  .navbar-menu.open{ transform:translateX(0); }

  /* ✅ REMOVE ANY EXTERNAL X (pseudo close icon) */
  .navbar-menu::before,
  .navbar-menu::after{
    content:none !important;
    display:none !important;
  }

  /* ✅ Close button INSIDE menu (the one you want) */
  .mobile-nav-close{
    display:none;
    position:sticky;
    top:0;
    width:100%;
    text-align:right;

    background:rgba(11,18,32,0.95);
    color:#fff;
    border:none;
    font-size:28px;
    padding:14px 16px;
    cursor:pointer;
    z-index:5;
  }

  .navbar-menu.open .mobile-nav-close{
    display:block;
  }

  /* Give the first link breathing room under the close button */
  .navbar-menu .nav-link:first-of-type{
    margin-top:6px;
  }

  /* LINKS */
  .nav-link{
    width:100%;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,0.12);

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

    transition:padding 0.25s ease;
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-link:hover{
    padding-left:28px;
  }

  .nav-item{ display:block; }

  /* DROPDOWN PARENT ARROW */
  .nav-parent{ cursor:pointer; }

  .nav-parent::after{
    content:'›';
    font-size:32px;
    font-weight:300;
    line-height:1;
    transition:transform 0.3s ease;
    color:#ffffff;
  }

  .nav-item.open .nav-parent::after{
    transform:rotate(90deg);
  }

  /* ✅ DROPDOWN CONTENT — this is what makes it OPEN */
  .mega-dropdown{
    display:none;
    background:rgba(255,255,255,0.06);
    border-radius:10px;
    padding:0;
    margin:12px 18px 8px;
    border:1px solid rgba(255,255,255,0.10);
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-item.open .mega-dropdown{
    display:block;
    padding:18px 20px;
  }

  /* Dropdown links */
  .mega-col{ margin-bottom:18px; }

  .mega-col h4{
    color:#ffffff;
    font-size:13px;
    margin:14px 0 10px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-weight:700;
    opacity:0.9;
  }

  .mega-col a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    padding:12px 10px;
    text-decoration:none;
    font-size:16px;
    border-radius:8px;
    transition:all 0.25s ease;
    font-weight:500;
    pointer-events:auto;           /* ✅ clickable */
  }

  .mega-col a:hover{
    background:rgba(255,255,255,0.10);
    padding-left:18px;
  }
}

/* Smaller phones */
@media (max-width:520px){
  .navbar-actions{ gap:8px; }

  .btn-primary{
    padding:8px 10px;
    font-size:12px;
    border-radius:10px;
    white-space:nowrap;
  }

  .logo-text{ font-size:13px; }
}

@media (max-width:380px){
  .btn-primary{
    padding:7px 8px;
    font-size:11px;
  }

  .logo-text{ font-size:12px; }
}

@media (max-width:420px){
  .navbar-menu{
    width:100%;
    max-width:none;
  }

  .navbar-logo-img{
    width:28px;
    height:28px;
  }
}





/* ------------------------------------------------
   HERO SECTION
------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #081e2b, #0f3144);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title p {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

/* HERO UNDERLINE (HIGHLIGHT) */
.hero-title p::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: var(--highlight);
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 6px;
}

.hero-subtitle {
  color: #d4e6f1;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* REMOVE UNDERLINE IN BREADCRUMBS */
.breadcrumbs a {
  text-decoration: none !important;
  color: #fff;
}
.page {
  color: var(--highlight);
  font-weight: 600;
}
.subpage {
  color: #ffff;
  font-weight: 600;
}

/* ------------------------------------------------
   MISSION SECTION
------------------------------------------------- */
.mission {
  background: #eaeff3;
  padding: 100px 0 80px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LABEL + LINE aligned with container */
.section-label {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.mission-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--muted);
  line-height: 1.2;
}

.mission-title .highlight {
  position: relative;
}

/* UPDATED underline color for "results" */
.mission-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 0.3em;
  background: rgba(75, 163, 255, 0.25); /* MATCH HERO COLOR */
  border-radius: 4px;
}

/* TABS */
.mission-tabs {
  background: #f1f3f4;
  border-radius: 50px;
  padding: 4px;
  display: flex;
  gap: 8px;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50px;
  transition: 0.25s ease;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
}

/* FIXED HEIGHT FOR RIGHT TAB CONTENT — NO RESIZE WHEN SWITCHING */
.mission-right {
  position: relative;
  min-height: 330px; /* Controls consistent height */
}

.tab-content {
  display: none;
  padding-top: 22px; /* spacing from tabs */
}

.tab-content.active {
  display: block;
}

/* ------------------------------------------------
   WHY CHOOSE US
------------------------------------------------- */
.why-choose-us {
  background: var(--surface);
  padding: 120px 0;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Align label */
.choose-left .section-label {
  padding-left: 60px;
}
.choose-left .section-label::before {
  left: 0;
}

.choose-title {
  font-size: clamp(2rem,3vw,2.8rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ADD SPACING BEFORE FEATURE SELECTOR */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.feature-item {
  padding: 16px 18px;
  border: 1px solid #e7e7e7;
  background: #fff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: 0.25s ease;
}

.feature-item.active,
.feature-item:hover {
  background: var(--primary);
  color: #fff;
}

/* CARD RIGHT */
.choose-card {
  background: #fff;
  padding: 48px 42px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  min-height: 360px;
}






/* ===============================
   WHO WE SERVE SECTION 
=============================== */

/* WHO WE SERVE SECTION (same layout as WHAT WE ARE) */

.who-we-serve {
  padding: 100px 0 80px;
  background: #f4f9fc; /* your normal page background */
}

.who-we-serve .mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

/* Tabs use the same styling as WHAT WE ARE */
.who-we-serve .mission-tabs {
  display: flex;
  background: #f1f3f4;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 25px;
}

.who-we-serve .tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.who-we-serve .tab-btn.active {
  background: var(--primary);
  color: var(--surface);
  border-radius: 50px;
}

/* Tab content identical to mission layout */
.who-we-serve .tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.who-we-serve .tab-content.active {
  display: block;
}

.who-we-serve .tab-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 18px;
}




/* ===============================
   VALUES SECTION — CLEAN, NO CARD
=============================== */

.values-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff; 
}

/* remove the green wrapper entirely */
.values-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;           /* remove padding */
  background: none;     /* remove green */
  border-radius: 0;     /* remove rounded card look */
  color: #0a2233;       /* normal text color */
}

.values-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0a2233;
  text-align: center;
}

/* 2-column layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

/* icon + text row */
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;

  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ICON CIRCLE — deep blue */
.value-icon-circle {
  width: 86px;
  height: 86px;
  min-width: 86px;

  background: #1B4F72;  /* your deep blue */
  border-radius: 50%;

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

  font-size: 40px;
  color: #ffffff;
}

/* text */
.value-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0a2233;
}

.value-text p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #35505e;
}


/* MOBILE */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}



/* ============================================
   HISTORY SECTION
============================================ */

/* ==============================
   HISTORY SECTION — MEDIUM BLUE
============================== */

.history-section {
  padding: 90px 0;
  background: #ffffff;
}

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

/* Title / Subtitle */
.history-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d2a3a; /* MEDIUM BLUE */
  margin-bottom: 12px;
}

.history-subtitle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
  color: #526773;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* GRID */
.history-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  text-align: justify;
}

.history-left p {
  color: #4b5d67;
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 1rem;
}

/* STATS BAR — MIDDLE BLUE */
.history-stats {
  margin-top: 60px;
  background: var(--primary);  /* MEDIUM BLUE */
  border-radius: 10px;
  padding: 18px 25px;

  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* EACH STAT */
.stat-item {
  flex: 1;
  text-align: center;
  color: #ffffff;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding: 3px 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-label {
  opacity: 0.85;
  font-size: 0.9rem;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 4px;
}

/* IMAGE */
.history-image {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .history-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .history-right {
    order: -1;
  }

  .history-stats {
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 12px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}



/* ===============================
   LEADERS SECTION
================================ */

.leaders-section {
  padding: 80px 0;
  background: #f8f9fb;
}

/* Narrower container for tighter spacing */
.leaders-container {
  width: min(950px, 96%);
  margin: 0 auto;
}

/* Header */
.leaders-header {
  text-align: center;
  margin-bottom: 45px;
}

.leaders-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2a3a;
}

.leaders-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  background: #4ba3ff; /* highlight blue */
  margin: 10px auto 0;
  border-radius: 3px;
}

.leaders-subtitle {
  margin-top: 12px;
  color: #435361;
  font-size: 1.02rem;
}

/* =========================================
   GRID — SMALL GAP + TIGHT FIT
========================================= */

.leaders-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 12px !important;   /* REDUCED GAP */
  justify-items: center;
  align-items: start;
}

/* =========================================
   CARD — SAME SIZE, TIGHTER FIT
========================================= */

.leader-card {
  width: 100%;
  max-width: 300px;  /* reduced from 340px to allow tighter spacing */
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.2s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.12);
}

/* =========================================
   IMAGE SECTION
========================================= */

.leader-image-wrapper {
  background: #1B4F72;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.leader-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  background: #ffffff;
}

/* =========================================
   INFO SECTION
========================================= */

.leader-info {
  text-align: center;
  padding: 24px 18px 28px;
  background: linear-gradient(180deg, #0d2a3a 0%, #071a24 100%);
  color: white;
}

.leader-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.leader-role {
  color: #d4e0ea;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* LinkedIn Icon */
.leader-linkedin img {
  width: 20px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.leader-linkedin:hover img {
  opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .leaders-title {
    font-size: 2.2rem;
  }
}




/* ===============================
   OTHER TEAM (SEPARATE SECTION)
================================ */

.team-members-section {
  padding: 80px 0;
  background: #eaeff3;
}

/* Narrower container to remove horizontal spacing */
.team-members-container {
  width: min(950px, 96%);
  margin: 0 auto;
}

/* Header */
.team-members-header {
  text-align: center;
  margin-bottom: 45px;
}

.team-members-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2a3a;
}

.team-members-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  background: #4ba3ff;
  margin: 10px auto 0;
  border-radius: 4px;
}

.team-members-subtitle {
  margin-top: 10px;
  color: #435361;
  font-size: 1.02rem;
}

/* =========================================
   GRID — SMALL GAP + TIGHT COLUMNS
========================================= */

.team-members-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 10px !important;   /* VERY SMALL */
  justify-items: center;
  align-items: start;
}

/* =========================================
   CARD — ORIGINAL SIZE (VISUAL)
========================================= */

.team-member-card {
  width: 100%;
  max-width: 300px; /* **Reduced from 340 → 300 to allow tighter fit** */
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

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

/* =========================================
   IMAGE AREA
========================================= */

.team-member-img-area {
  background: #1B4F72;
  text-align: center;
  padding: 40px 0;
}

.team-member-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
}

/* =========================================
   INFO AREA
========================================= */

.team-member-info {
  text-align: center;
  padding: 24px 18px 28px;
  background: linear-gradient(180deg, #0d2a3a 0%, #071a24 100%);
  color: #fff;
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-member-role {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: #d4e0ea;
}

/* LinkedIn */
.team-member-linkedin img {
  width: 20px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.team-member-linkedin:hover img {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .team-members-title {
    font-size: 2.2rem;
  }
}


/* =========================================
   CAREERS PAGE
========================================= */

.careers-page {
  padding: 80px 0;
}

.careers-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.career-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.career-card h3 {
  color: #1B4F72;
  margin-bottom: 6px;
}

.career-meta {
  font-size: 0.9rem;
  color: #6b7780;
  margin-bottom: 14px;
}

.career-desc p {
  margin-bottom: 12px;
}

.empty {
  padding: 60px;
  background: #f1f5f9;
  border-radius: 14px;
  text-align: center;
  color: #6b7780;
}





/* RESPONSIVE */

@media (max-width: 768px) {
  .mission-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }
}


/* FOOTER BOTTOM */
.gts-footer {
  background: linear-gradient(135deg, #071a24 0%, #0d2a3a 100%);
  background-size: cover;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.85);
}


.gts-footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Headings */
.footer-heading {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #F39C12; /* gold accent */
  margin: 25px 0 12px;
}

/* Description */
.footer-desc {
  max-width: 320px;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.9;
}

/* Footer Links */
.gts-footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: 0.2s;
}

.gts-footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social img {
  width: 22px;
  opacity: 0.8;
  transition: 0.2s;
  filter: brightness(0) invert(1); /* ← FORCES WHITE ICON */
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* Footer Bottom */
.gts-footer-bottom {
  margin-top: 60px;
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1100px) {
  .gts-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .gts-footer-inner {
    grid-template-columns: 1fr;
  }
}



