/* ============================================================
   DNYAN SETU — about.css
   Page-specific styles for About Us page
============================================================ */

/* ── Page Hero ── */
.page-hero{
  background: linear-gradient(135deg, var(--navy) 0%, #243869 60%, var(--navy-soft) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=1920&auto=format&fit=crop') center/cover;
  opacity:.08;
}
.page-hero h1{
  font-family: var(--display);
  font-size: clamp(2.4rem,5vw,4rem);
  color:#fff;
  font-weight:400;
  line-height: 1.9;
  padding-top: 0.5em;
  margin-bottom:16px;
  position:relative;
  overflow: visible;
}
.page-hero p{
  color:rgba(255,255,255,.75);
  max-width:600px;
  margin:0 auto;
  font-size:1.05rem;
  position:relative;
}
.page-hero .eyebrow{ position:relative; }

/* ── Mission ── */
.mission-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.mission-text h2{
  font-family:var(--display);
  font-size:clamp(1.9rem,3.4vw,2.6rem);
  color:var(--navy);
  font-weight:400;
  line-height:1.3;
  margin-bottom:18px;
}
.mission-text p{ color:var(--muted); margin-bottom:16px; line-height:1.8; }
.mission-img{
  width:100%; height:400px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* ── Values ── */
.values-section{ background:var(--white); }
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.value-card{
  padding:36px 28px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--cream);
  transition:transform .3s ease,box-shadow .3s ease;
}
.value-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.value-icon{ font-size:2.4rem; margin-bottom:16px; }
.value-card h3{ font-size:1.1rem; color:var(--navy); margin-bottom:8px; font-weight:600; }
.value-card p{ font-size:.88rem; color:var(--muted); line-height:1.7; }

/* ── Timeline ── */
.timeline-section{ background:var(--cream); }
.timeline{ position:relative; max-width:760px; margin:0 auto; }
.timeline::before{
  content:'';
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:2px;
  background:linear-gradient(to bottom, var(--orange), var(--gold));
  transform:translateX(-50%);
}
.tl-item{
  display:flex;
  gap:40px;
  margin-bottom:56px;
  position:relative;
}
.tl-item:nth-child(even){ flex-direction:row-reverse; }
.tl-year{
  flex:0 0 120px;
  text-align:right;
  padding-top:4px;
}
.tl-item:nth-child(even) .tl-year{ text-align:left; }
.tl-year span{
  font-family:var(--mono);
  font-size:1.4rem;
  font-weight:700;
  color:var(--orange);
}
.tl-dot{
  position:absolute;
  left:50%;
  top:6px;
  width:14px; height:14px;
  border-radius:50%;
  background:var(--orange);
  border:3px solid var(--cream);
  transform:translateX(-50%);
  box-shadow:0 0 0 3px var(--orange);
}
.tl-body{
  flex:1;
  background:var(--white);
  border-radius:14px;
  padding:22px 24px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.tl-body h4{ color:var(--navy); font-size:.98rem; margin-bottom:6px; font-weight:600; }
.tl-body p{ color:var(--muted); font-size:.86rem; line-height:1.7; }

/* ── Team ── */
.team-section{ background:var(--white); }
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card{
  text-align:center;
  padding:28px 18px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--cream);
  transition:transform .3s ease,box-shadow .3s ease;
}
.team-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.team-avatar{
  width:80px; height:80px;
  border-radius:50%;
  margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display);
  font-size:1.5rem;
  font-weight:700;
  color:#fff;
}
.team-card h4{ font-size:.96rem; color:var(--navy); margin-bottom:4px; font-weight:600; }
.team-card .role{ font-size:.78rem; color:var(--orange); font-weight:600; font-family:var(--mono); letter-spacing:.04em; display:block; margin-bottom:8px; }
.team-card p{ font-size:.8rem; color:var(--muted); line-height:1.6; }

/* ── Impact Numbers ── */
.impact-section{
  background:linear-gradient(135deg,var(--navy),#243869);
  padding:var(--section-pad) 0;
}
.impact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.impact-item h3{
  font-family:var(--mono);
  font-size:2.8rem;
  font-weight:700;
  color:var(--gold);
  margin-bottom:8px;
}
.impact-item p{ color:rgba(255,255,255,.72); font-size:.88rem; }

/* ── Partners ── */
.partners-section{ background:var(--cream); }
.partners-logos{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}
.partner-logo{
  width:160px; height:80px;
  background:var(--white);
  border-radius:12px;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--mono);
  font-size:.78rem;
  font-weight:700;
  color:var(--navy);
  letter-spacing:.04em;
  transition:box-shadow .3s ease,transform .3s ease;
}
.partner-logo:hover{ transform:translateY(-4px); box-shadow:var(--shadow-hover); }

/* ── Responsive ── */
@media(max-width:1080px){
  .mission-block,.values-grid{ grid-template-columns:1fr; gap:36px; }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .impact-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:860px){
  .page-hero{ padding: 110px 0 60px; }
  .page-hero h1{ font-size: clamp(1.9rem, 5vw, 3rem); }
  .timeline::before{ left:24px; }
  .tl-item,.tl-item:nth-child(even){ flex-direction:row; gap:24px; }
  .tl-year,.tl-item:nth-child(even) .tl-year{ flex:0 0 80px; text-align:right; }
  .tl-dot{ left:24px; }
}
@media(max-width:480px){
  .page-hero{ padding: 90px 0 40px; }
  .page-hero h1{ font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero p{ font-size: 0.88rem; }
  .team-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .impact-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .impact-item h3{ font-size:2rem; }
  .mission-img{ height: 240px; }
}
