/* =========================
   ABOUT PAGE ONLY CSS
========================= */

:root {
  --ab-primary: #0b63a8;
  --ab-primary-dark: #084d83;
  --ab-dark: #0f172a;
  --ab-text: #334155;
  --ab-muted: #64748b;
  --ab-border: #e5e7eb;
  --ab-soft: #f6f8fb;
  --ab-white: #ffffff;
  --ab-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --ab-shadow-md: 0 16px 40px rgba(15, 23, 42, 0.10);
  --ab-shadow-lg: 0 22px 55px rgba(15, 23, 42, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.sz-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   HERO
========================= */
.ab-hero {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  padding: 48px 0 22px;
}

.ab-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.ab-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ab-primary);
  font-weight: 900;
  margin-bottom: 10px;
}

.ab-title {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
  color: var(--ab-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.ab-subtitle {
  color: var(--ab-muted);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 600;
  max-width: 640px;
  margin-bottom: 18px;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.ab-stat {
  background: var(--ab-soft);
  border: 1px solid var(--ab-border);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: var(--ab-shadow-sm);
}

.ab-stat h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 4px;
}

.ab-stat p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ab-muted);
  margin: 0;
}

.ab-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.ab-btn-primary {
  background: var(--ab-primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(11, 99, 168, 0.25);
}

.ab-btn-primary:hover {
  background: var(--ab-primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.ab-btn-outline {
  background: #fff;
  color: var(--ab-primary);
  border: 1px solid rgba(11, 99, 168, 0.25);
}

.ab-btn-outline:hover {
  background: rgba(11, 99, 168, 0.06);
  color: var(--ab-primary);
  transform: translateY(-2px);
}

.ab-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-hero-card,
.ab-hero-banner {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  box-shadow: var(--ab-shadow-md);
}

.ab-hero-card {
  padding: 20px;
}

.ab-hero-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 12px;
}

.ab-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ab-hero-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ab-text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.ab-hero-card ul li:last-child {
  margin-bottom: 0;
}

.ab-hero-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--ab-primary);
  position: absolute;
  left: 0;
  top: 1px;
}

.ab-hero-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.ab-banner-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(11, 99, 168, 0.08);
  color: var(--ab-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ab-hero-banner h4 {
  font-size: 17px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 4px;
}

.ab-hero-banner p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ab-muted);
  margin: 0;
}

/* =========================
   ABOUT BLOCK
========================= */
.ab-about-block {
  padding: 38px 0 18px;
}

.ab-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.ab-about-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.ab-about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.ab-about-text h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 12px;
}

.ab-about-text p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
  color: var(--ab-muted);
  margin-bottom: 12px;
}

.ab-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ab-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--ab-soft);
  border: 1px solid var(--ab-border);
  font-weight: 800;
  font-size: 13px;
  color: var(--ab-text);
}

.ab-point i {
  color: var(--ab-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* =========================
   VALUES
========================= */
.ab-values {
  padding: 30px 0 24px;
  background: #fff;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ab-value {
  background: var(--ab-soft);
  border: 1px solid var(--ab-border);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--ab-shadow-sm);
}

.ab-value h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 8px;
}

.ab-value p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
  color: var(--ab-muted);
  margin: 0;
}

/* =========================
   TEAM
========================= */
.ab-team {
  padding: 34px 0 50px;
  background: #f6f8fb;
  margin-top: 18px;
}

.ab-team-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 20px;
}

.ab-team-head h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 8px;
}

.ab-team-head p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--ab-muted);
  margin: 0;
}

/* yahi management heading ka top gap hai */
.ab-team-head.ab-mt {
  margin-top: 56px;
}

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.ab-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 22px 18px 16px;
  text-align: center;
  transition: 0.25s ease;
  box-shadow: var(--ab-shadow-sm);
}

.ab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ab-shadow-md);
}

.ab-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 6px solid #fff;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  background: #e8eef6;
}

.ab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--ab-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.35;
}

.ab-role {
  font-size: 12px;
  font-weight: 900;
  color: var(--ab-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.ab-divider {
  width: 72px;
  height: 2px;
  background: rgba(11, 99, 168, 0.18);
  margin: 10px auto 12px;
  border-radius: 20px;
}

.ab-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ab-icons a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ab-primary);
  border: 1px solid rgba(11, 99, 168, 0.2);
  background: rgba(11, 99, 168, 0.06);
  transition: 0.2s ease;
}

.ab-icons a:hover {
  background: rgba(11, 99, 168, 0.12);
  transform: translateY(-2px);
}

/* =========================
   CTA STRIP
========================= */
.ab-cta-strip {
  margin-top: 26px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ab-cta-left h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ab-dark);
  margin-bottom: 6px;
}

.ab-cta-left p {
  font-weight: 600;
  color: var(--ab-muted);
  margin: 0;
}

.ab-cta-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .sz-wrap {
    padding: 0 24px;
  }

  .ab-title {
    font-size: clamp(28px, 3vw, 40px);
  }
}

@media (max-width: 991px) {
  .ab-hero-grid,
  .ab-about-grid,
  .ab-values-grid {
    grid-template-columns: 1fr;
  }

  .ab-about-img img {
    height: 340px;
  }

  .ab-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ab-team-head.ab-mt {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .sz-wrap {
    padding: 0 18px;
  }

  .ab-hero {
    padding: 32px 0 16px;
  }

  .ab-title,
  .ab-about-text h2,
  .ab-team-head h2 {
    font-size: 24px;
  }

  .ab-subtitle,
  .ab-about-text p,
  .ab-team-head p,
  .ab-value p,
  .ab-cta-left p,
  .ab-hero-banner p {
    font-size: 14px;
  }

  .ab-stats,
  .ab-points,
  .ab-team-grid {
    grid-template-columns: 1fr;
  }

  .ab-about-img img {
    height: 280px;
  }

  .ab-avatar {
    width: 108px;
    height: 108px;
  }

  .ab-team-head.ab-mt {
    margin-top: 40px;
  }

  .ab-cta,
  .ab-cta-right {
    width: 100%;
  }

  .ab-btn,
  .ab-cta-right .ab-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .ab-kicker {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .ab-title {
    font-size: 22px;
  }

  .ab-stat h3 {
    font-size: 18px;
  }

  .ab-stat p,
  .ab-role,
  .ab-point {
    font-size: 12px;
  }

  .ab-about-img img {
    height: 240px;
  }

  .ab-card {
    padding: 18px 14px 14px;
  }

  .ab-name {
    font-size: 15px;
  }

  .ab-icons a {
    width: 38px;
    height: 38px;
  }
}