/* HERO */
.about-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(29,111,184,0.85);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2rem,4vw,3rem);
    margin-bottom: 10px;
}

.about-hero p {
    color: var(--white);
    max-width: 600px;
    margin: auto;
}

/* SPLIT SECTION */
.about-split {
    padding: var(--space-4) 0;
}

.split-grid {
    display: grid;
    gap: var(--space-4);
    align-items: center;
}

.split-left h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.split-right {
display: flex;
flex-direction: column;
align-items: center;
}

.split-right .image-circle {
width: 260px;
height: 260px;
border-radius: 50%;
border: 6px solid var(--primary);
overflow: hidden;
}

.split-right .image-circle img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top; /* keeps face properly visible */
}

.founder-name {
    margin-top: var(--space-2);
    font-weight: 700;
    color: var(--text);
}

.founder-role {
    color: var(--primary);
    font-size: 0.9rem;
}

/* BUSINESS UNITS */
.units-section {
    background: #f8fafc;
    padding: var(--space-4) 0;
}

.units-grid {
    display: grid;
    gap: var(--space-3);
}

.unit-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.unit-card img {
    height: 200px;
    object-fit: cover;
}

.unit-content {
    padding: var(--space-2);
}

.unit-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

@media(min-width:768px){
    .split-grid{
    grid-template-columns: 1fr 1fr;
    }

    .units-grid{
    grid-template-columns: repeat(2,1fr);
    }
}

/* ========================= */
/* TEAM SECTION              */
/* ========================= */

.team-section {
  padding: var(--space-4) 0;
  background: #f8fafc;
}

.team-title {
  text-align: center;
  margin-bottom: var(--space-3);
}

.team-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  background: var(--white);
  padding: var(--space-3);
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.team-image {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}

.team-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.team-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================= */
/* ABOUT HERO MOBILE FIX     */
/* ========================= */

@media (max-width: 768px) {

  .about-hero {
    height: 260px;
    padding: 40px 20px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

}

/* ========================= */
/* SPLIT SECTION MOBILE      */
/* ========================= */

@media (max-width: 768px) {

  .about-split {
    padding: 60px 0;
  }

  .split-grid {
    gap: 40px;
  }

  .split-left {
    text-align: center;
  }

  .split-right .image-circle {
    width: 200px;
    height: 200px;
  }

  .founder-name {
    font-size: 1.1rem;
  }

}

/* ========================= */
/* TEAM MOBILE IMPROVEMENTS  */
/* ========================= */

@media (max-width: 768px) {

  .team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 1.6rem;
  }

  .team-card {
    padding: 20px;
  }

  .team-image {
    width: 110px;
    height: 110px;
  }

  .team-card h3 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: 0.9rem;
  }

}