/* ABOUT INTRO — Full bleed 50/50 */
.abt-intro {
  display: flex;
  min-height: 580px;
}
.abt-intro-img {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.abt-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.abt-intro-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, #fff 100%);
}
.abt-intro-content {
  flex: 0 0 50%;
  background: #fff;
  display: flex;
  align-items: center;
}
.abt-intro-inner {
  padding: 60px;
  max-width: 680px;
}




@media (max-width: 991px) {
  .abt-intro { flex-direction: column; }
  .abt-intro-img { flex: 0 0 300px; min-height: 300px; }
  .abt-intro-img-overlay { display: none; }
  .abt-intro-content { flex: 1; }
  .abt-intro-inner { padding: 40px 24px; max-width: 100%; }
  .abt-intro-inner h2 { font-size: 26px; }
}


.vmv4-section {
  background: #fff;
  padding: 90px 0;
}
.vmv4-header {
  margin-bottom: 48px;
}


/* Card */
.vmv4-card {
  background: #f7f9fc;
  border-radius: 0;
  border-left: 3px solid #dde4ed;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.vmv4-card:hover {
  border-left-color: #E05A2B;
  background: #fff;
  box-shadow: 0 8px 40px rgba(3,23,62,0.08);
}

/* Featured middle card — always highlighted */
.vmv4-card-featured {
  background: #03173E;
  border-left: 3px solid #E05A2B;
}
.vmv4-card-featured:hover {
  background: #04204f;
  box-shadow: 0 8px 40px rgba(3,23,62,0.2);
}
.vmv4-card-featured .vmv4-card-icon {
  background: rgba(224,90,43,0.15);
}
.vmv4-card-featured .vmv4-card-icon i { color: #E05A2B; }
.vmv4-card-featured .vmv4-card-title { color: #fff; }
.vmv4-card-featured .vmv4-card-text { color: rgba(255,255,255,0.65); }
.vmv4-card-featured .vmv4-card-text strong { color: #fff; }

/* Icon */
.vmv4-card-icon {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(3,23,62,0.08);
}
.vmv4-card-icon i { font-size: 20px; color: #03173E; }

.vmv4-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #03173E;
  margin-bottom: 14px;
}

.vmv4-card-text strong {
  color: #03173E;
  font-weight: 600;
}

@media (max-width: 991px) {
  .vmv4-section { padding: 60px 0; }
  .vmv4-header h2 { font-size: 26px; }
}

/* TEAM — Horizontal Rows */
.team3-section {
  background: #f7f9fc;
  padding: 90px 0;
}
.team3-header {
  margin-bottom: 56px;
}


/* Each person row */
.team3-row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid #e4eaf2;
}
.team3-row-last { border-bottom: none; }

/* Left: Photo */
.team3-img-col { flex: 0 0 200px; }
.team3-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.team3-img-wrap img {
  width: 200px;
  height: 230px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 24px rgba(3,23,62,0.12);
}
.team3-exp-badge {
  position: absolute;
  bottom: 10px; right: -10px;
  background: #E05A2B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(224,90,43,0.35);
}

/* Right: Info */
.team3-info-col { flex: 1; padding-top: 4px; }
.team3-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E05A2B;
  margin-bottom: 8px;
}
.team3-name {
  font-size: 22px;
  font-weight: 700;
  color: #03173E;
  margin-bottom: 12px;
  line-height: 1.2;
}


/* Meta info items */
.team3-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team3-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #3a4a5c;
  line-height: 1.6;
}
.team3-meta-item i {
  color: #E05A2B;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 16px;
}

@media (max-width: 767px) {
  .team3-section { padding: 60px 0; }
  .team3-row { flex-direction: column; gap: 24px; padding: 36px 0; }
  .team3-img-col { flex: 0 0 auto; }
  .team3-img-wrap img { width: 160px; height: 180px; }
}
