/* ── About Page styles ── */

/* ── Hero overrides ── */

.about-hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 0px;
  flex-wrap: wrap;
}

.about-hero {
  background: unset;
  z-index: 2;
  position: relative;
  padding: 0 0 140px 0;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  bottom: 0;
  top: inherit;
  background:
    radial-gradient(ellipse 70% 60% at 12% 75%,
      rgba(190, 230, 255, 0.75) 0%,
      rgba(190, 230, 255, 0) 70%),
    radial-gradient(ellipse 70% 60% at 88% 75%,
      rgba(215, 200, 245, 0.75) 0%,
      rgba(215, 200, 245, 0) 70%),
    linear-gradient(135deg,
      #ffffff 0%,
      #f7fcff 20%,
      #eaf7ff 45%,
      #eeeafb 70%,
      #ddd3ef 100%);
}


body::after {
  background: url(../src/hero-top.png);
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  bottom: inherit;
  top: 0;
  width: 100%;
  height: 479px;
  z-index: 1;
}

.page-content-bg {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 70% 60% at 10% 75%,
      rgba(190, 230, 255, 0.8),
      transparent 70%),
    radial-gradient(ellipse 70% 60% at 90% 75%,
      rgba(215, 200, 245, 0.8),
      transparent 70%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fcff 20%,
      #eaf7ff 45%,
      #eeeafb 70%,
      #ddd3ef 100%);
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #454f5b;
}

.about-tag-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32A5FB 0%, #391E95 100%);
  flex-shrink: 0;
}

/* ── Who We Are ── */
.about-who {
  background: #f9fafb;
  padding: 180px 0;
}

.container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 2vw, 1.25rem);
}

.about-who-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

.about-who-content {
  width: 100%;
}

.about-who-heading {
  margin: 0 0 32px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.25;
  color: #212b36;
  font-family: Manrope, sans-serif;
}

.about-who-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-who-body p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #454f5b;
}

.about-who-body strong {
  font-weight: 700;
  color: #212b36;
}

/* Stats — full-width row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.about-stats.is-visible .about-stat {
  opacity: 1;
  transform: translateY(0);
}

.about-stats.is-visible .about-stat:nth-child(2) {
  transition-delay: .1s;
}

.about-stats.is-visible .about-stat:nth-child(3) {
  transition-delay: .2s;
}

.about-stat-bar {
  height: 3px;
  width: 0;
  max-width: 100%;
  background: linear-gradient(90deg, #32A5FB 0%, #391E95 100%);
  border-radius: 2px;
  margin-bottom: 4px;
  transition: width .9s cubic-bezier(.22, 1, .36, 1);
}

.about-stats.is-visible .about-stat-bar {
  width: 100%;
}

.about-stat-number {
  font-size: 74px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.1;
  margin: 8px 0;
  font-family: Manrope, sans-serif;
}

.about-stat-label {
  font-size: 22px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.4;
}

.about-stat-desc {
  font-size: 18px;
  font-weight: 400;
  color: #454f5b;
  line-height: 1.6;
}

/* ── Specialized Brands ── */
.brands-section {
  background: #09090b;
  padding: 80px clamp(16px, 6vw, 120px);
}

.brands-header {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brands-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.brands-sub {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.65);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  background: #1a1a1a;
  border-radius: 32px;
  padding: 85px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  /* justify-content: space-between; */
}

.brand-logo {
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}

.brand-desc {
  margin: 108px 0 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ── Vision & Mission ── */
.vm-section {
  padding: 180px 0;
  overflow: hidden;
}

.vm-inner {
  display: flex;
  gap: 24px;
  width: 100%;
}

.vm-card {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(40px, 5vw, 48px) clamp(28px, 48px, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 1vw, 40px);
  border-radius: 20px;
  box-sizing: border-box;
}

.vm-card--light {
  background: #f3f4f9;
}

.vm-card--dark {
  background: #09090b;
}

.vm-card-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-card-icon svg {
  width: 100%;
  height: 100%;
  max-width: 90px;
  max-height: 90px;
}

.vm-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.vm-title {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: #212b36;
  line-height: 1.3;
}

.vm-title--light {
  color: #fff;
}

.vm-text {
  margin: 16px 0 0 0;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: #454f5b;
}

.vm-text--dim {
  color: rgba(255, 255, 255, 0.65);
}

/* Mission bullet list */
.vm-list {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
}

.vm-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.vm-list-item:last-child {
  padding-bottom: 0;
}

.vm-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.vm-list-text {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.vm-list-divider {
  height: 1px;
  background: var(--grad);
}

/* ── Core Values ── */
.values-section {
  background: #f9fafb;
  padding: 180px 0;
  text-align: center;
}

.values-title {
  margin: 0 0 32px;
  font-size: 60px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.2;
}

.values-sub {
  margin: 0 auto 80px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #454f5b;
  max-width: 640px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.value-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.3;
}

.value-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #454f5b;
}

/* ── Awards ── */
.awards-wrap {
  padding: 180px 0 90px 0;
  background: #fff;
}

.awards-section {
  background: #09090b;
  border-radius: 32px;
  padding: 180px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.awards-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1095px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.awards-title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  max-width: 665px;
  margin: 0 auto;
  line-height: 1.25;
}

.awards-sub {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.55);
}

.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.award-badge img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  object-fit: cover;
}

.award-badge--white {
  background: #fff;
  border-radius: 16px;
}

.award-badge--framed {
  border: 2px solid #e5e7eb;
}

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

.award-img--pad {
  padding: 8px;
}

/* ── Team ── */
.team-section {
  padding: 0px 0 90px 0;
}

.team-title {
  margin: 0 0 32px;
  font-size: 60px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.2;
  text-align: center;
}

.team-sub {
  margin: 0 auto 80px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #454f5b;
  max-width: 700px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  position: relative;
  height: 470px;
  background: #cbd0d6;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;

}

.team-card-bg {
  position: absolute;
  inset: 0;
  background: #cbd0d6;
}

.team-card-bg img {
  width: 100%;
  height: 100%;
}

.team-card-label {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgb(96 96 96);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(100% - 40px);
  margin: auto;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.team-card:hover .team-card-label {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.team-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.team-designation {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1600px) {
  .container {
    max-width: 95%;
  }

  .about-who,
  .brands-section,
  .vm-section,
  .values-section,
  .awards-wrap {
    padding: 80px 0px;
  }

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


  .values-title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .awards-title {
    font-size: 48px;
  }

  .awards-section {
    padding: 100px 70px;
  }

  .team-title {
    font-size: 48px;
  }

  .about-who-heading {
    font-size: 48px;
  }

  .team-card {
    height: 380px;
  }

  .brand-logo {
    max-height: 65px;
  }
}




/* ── Responsive ── */
@media (max-width: 1400px) {

  .about-who-inner {
    gap: 56px;
  }

  .about-who-heading {
    font-size: 44px;
  }

  .about-stats {
    gap: 32px;
  }

  .brands-section {
    padding: 72px clamp(20px, 5vw, 80px);
  }

  .values-section {
    padding: 72px clamp(20px, 5vw, 80px);
  }

  .vm-card {
    padding: clamp(20px, 5vw, 28px) clamp(20px, 28px, 100px);
  }

  .values-title {
    font-size: 40px;
  }

  .brand-card {
    padding: 50px 27px 40px;
  }

  .brand-desc {
    font-size: 17px;
  }

  .values-grid {
    gap: 24px;
  }

  .value-card {
    padding: 30px;
  }

  .values-sub {
    margin: 0 auto 50px;
    font-size: 18px;
  }

  .awards-section {
    padding: 60px;
  }

  .awards-title {
    font-size: 44px;
  }

  .team-title {
    font-size: 44px;
  }

  .awards-sub {
    font-size: 18px;
  }

  .awards-row {
    gap: 20px;
  }

  .award-badge img {
    width: 120px;
    height: 120px;
  }

  .page-content-bg {
    padding-top: 0;
  }

  .team-sub {
    margin: 0 auto 50px;
    font-size: 18px;
  }

  .team-card {
    height: 320px;
  }
}

@media (max-width: 1200px) {
  .brand-logo {
    max-height: 65px;
  }

  .team-sub {
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .brands-sub {
    font-size: 18px;
    line-height: normal;
  }

  .awards-section {
    padding: 50px;
  }

  .brands-header {
    margin: 0 auto 50px;
  }

  .brand-desc {
    margin: 50px 0 0 0;
    font-size: 17px;
    line-height: normal;
  }

  .about-who,
  .brands-section,
  .vm-section,
  .values-section,
  .awards-wrap,
  .team-section {
    padding: 60px 0px;
  }

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

  .values-sub {
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .value-icon {
    margin-bottom: 10px;
  }

  .awards-title {
    font-size: 40px;
  }

  .team-title {
    font-size: 40px;
  }

  .about-who-heading {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-card {
    height: 380px;
  }
}



@media (max-width: 1024px) {
  .awards-title {
    font-size: 32px;
  }

  .awards-section {
    padding: 40px;
  }

  .about-hero {
    padding: 60px 0 48px 0;
  }

  body::after {
    height: 150px;
    background-size: 100% 150px;
    background-repeat: no-repeat;
  }

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

  .about-who-inner {
    gap: 48px;
  }

  .about-stats {
    gap: 28px;
  }

  .about-who-heading {
    font-size: 32px;
  }

  .about-stat-number {
    font-size: 40px;
  }

  .brands-section {
    padding: 60px clamp(16px, 4vw, 48px);
  }

  .brands-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .vm-section {
    padding: 60px 40px;
  }

  .vm-inner {
    flex-direction: column;
    gap: 16px;
  }

  .vm-card {
    flex: none;
    width: 100%;
    padding: 48px 40px;
  }

  .vm-card-icon {
    width: 64px;
    height: 64px;
  }

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

  .awards-section {
    border-radius: 24px;
  }

  .awards-row {
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
  }

  .team-card {
    height: 530px;
  }

  .about-who,
  .brands-section,
  .vm-section,
  .values-section,
  .awards-wrap,
  .team-section {
    padding: 48px 0px;
  }

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

  .about-who-body p {
    font-size: 18px;
  }

  .vm-inner {
    gap: 20px;
  }

  .values-title {
    font-size: 32px;
  }

  .awards-sub {
    font-size: 16px;
  }

  .team-card {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .team-card {
    height: 410px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .about-who-body p {
    font-size: 17px;
  }

  .awards-section {
    padding: 30px 20px;
    gap: 12px;
    border-radius: 20px;
  }

  .container {
    max-width: 97%;
  }

  .about-who-heading {
    font-size: 26px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-stat-number {
    font-size: 36px;
  }

  .brands-title {
    font-size: 32px;
  }

  .brand-card {
    padding: 36px 28px;
    border-radius: 24px;
  }

  .vm-card {
    padding: 32px 20px;
    gap: 24px;
    border-radius: 16px;
  }

  .vm-card-icon {
    width: 56px;
    height: 56px;
  }

  .vm-list-item {
    gap: 12px;
    padding: 16px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .award-badge {
    width: 90px;
    height: 90px;
  }

  .team-title {
    font-size: 32px;
    margin: 0 0 20px;
  }

  .about-hero-tags {
    gap: 12px;
  }

  .about-tag {
    font-size: 14px;
    padding: 8px 16px;
  }
}