/* ── Page Hero ── */
.about-hero {
  background:
	linear-gradient(135deg, rgba(40, 75, 140, .94) 0%, rgba(11, 34, 72, .98) 100%),
	url("https://www.3sba.com/assets/img/photos/bg11.jpg") center / cover no-repeat;
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://staging.3sba.com/uploads/settings/1775664813_logo-dark.png") right -60px center / 420px no-repeat;
  opacity: .06;
  pointer-events: none;
}

.about-hero h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: var(--fs-3xl);
  line-height: 1.1;
}

.about-hero .lead {
  color: rgba(255, 255, 255, .72);
  font-size: var(--fs-md);
  max-width: 660px;
  margin: 0 auto;
}

/* ── About Tabs ── */
.about-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
  position: sticky;
  top: 68px;
  z-index: 100;
}

.about-nav .nav-link {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--brand-muted);
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 1rem 1.25rem;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}

.about-nav .nav-link:hover {
  color: var(--brand-navy);
  background: transparent;
  border-bottom-color: rgba(40, 75, 140, .25);
}

.about-nav .nav-link.active {
  color: var(--brand-navy);
  background: transparent;
  border-bottom-color: var(--brand-orange);
}

.about-nav .nav-link i {
  font-size: var(--fs-md);
  color: var(--brand-blue);
}

/* ── Tab Pane Content ── */
.about-content {
  padding: 4rem 0 6rem;
  min-height: 60vh;
}

/* ── Company Profile Images ── */
.profile-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.profile-img-grid .img-main {
  aspect-ratio: 3/2.7;
  overflow: hidden;
  border-radius: 10px;
}

.profile-img-grid .img-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}

.profile-text p {
  font-size: var(--fs-base);
  color: #3a4a60;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Team Cards ── */
.team-row {
  border-top: 1px solid var(--brand-line);
  padding: 2.5rem 0;
}

.team-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.team-photo-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(40, 75, 140, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(40, 75, 140, .12);
}

.team-photo-card figure {
  margin: 0;
  aspect-ratio: 3/3;
  overflow: hidden;
  background: var(--brand-sky);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 0;
}

.team-photo-card .team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.team-card-body {
  padding: 1.1rem 1.25rem;
}

.team-card-body h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--brand-navy);
  margin-bottom: .2rem;
}

.team-card-body p {
  font-size: var(--fs-sm);
  color: var(--brand-orange);
  font-weight: 600;
  margin: 0;
}

.team-bio p {
  color: #3a4a60;
  font-size: var(--fs-base);
  line-height: 1.75;
  margin-bottom: .75rem;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

/* ── Awards ── */
.award-card {
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(40, 75, 140, .12);
}

.award-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  /* background: var(--brand-soft); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.award-card figure img {
  max-width: 100%;
  max-height: 100%;
  /* object-fit: contain; */
}

.award-card .award-label {
  padding: .9rem 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--brand-navy);
  text-align: center;
  border-top: 1px solid var(--brand-line);
}

/* ── Clients Tab ── */
.clients-filter {
  position: sticky;
  top: 128px;
}

.clients-filter h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--fs-xl);
  margin-bottom: 1.5rem;
}

.country-filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: #f5f8fb;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .5rem .9rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-muted);
  transition: all .2s ease;
  cursor: pointer;
  margin-bottom: .35rem;
}

.country-filter-btn:hover,
.country-filter-btn.active {
  background: var(--brand-sky);
  border-color: rgba(40, 75, 140, .15);
  color: var(--brand-navy);
}

.country-filter-btn.active {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 700;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.client-logo-item {
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  aspect-ratio: 3/2;
  transition: all .2s ease;
}

.client-logo-item:hover {
  border-color: rgba(40, 75, 140, .25);
  box-shadow: 0 8px 20px rgba(40, 75, 140, .08);
  transform: translateY(-2px);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter .2s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── Section titles in tabs ── */
.tab-section-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--brand-navy);
  font-size: var(--fs-3xl);
  margin-bottom: 1rem;
}

.tab-section-kicker {
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-orange);
  margin-bottom: .5rem;
}
  .info-card {
background: #fff;
padding: 40px;
border-radius: 20px; 
transition: transform 0.3s ease;
}
.info-card:hover {
transform: translateY(-10px);
background: #ffffff;
box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.card-icon {
font-size: 2.5rem;
color: var(--brand-orange);
margin-bottom: 20px;
}
.info-card h3 {
font-weight: 700;
margin-bottom: 15px;
}
.mission-list {
list-style: none;
padding: 0;
}
.mission-list li {
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}
.mission-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--brand-navy);
font-weight: bold;
}
  
     