/* WOOLTEX — About Us page visuals */

.about-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 27, 75, 0.18);
}

.about-visual-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}

.about-visual-main img,
.about-visual-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-visual-main:hover img,
.about-visual-cell:hover img {
  transform: scale(1.04);
}

.about-visual-cell {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.about-visual-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(13, 27, 75, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.about-visual-badge span {
  color: #e53935;
}

.about-showcase {
  padding-top: 0;
}

.about-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.about-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(13, 27, 75, 0.1);
}

.about-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-photo-item:hover img {
  transform: scale(1.05);
}

.about-photo-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(13, 27, 75, 0.88), transparent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.about-photo-item--wide {
  grid-column: span 7;
  grid-row: span 2;
}

.about-photo-item--tall {
  grid-column: span 5;
  grid-row: span 2;
}

.about-photo-item--sm {
  grid-column: span 4;
}

.about-photo-item--md {
  grid-column: span 4;
}

/* —— Core Values —— */
.about-values {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(229, 57, 53, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 15%, rgba(21, 101, 192, 0.2) 0%, transparent 45%),
    linear-gradient(135deg, #0d1b4b 0%, #1a237e 55%, #1565c0 100%);
  padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 80px);
}

.about-values-bg {
  position: absolute;
  inset: 0;
  background-image: url("cv.png");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

.about-values-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 2px, transparent 2px);
  background-size: 26px 26px;
}

.about-values-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values .section-head {
  margin-bottom: 40px;
}

.about-values .ds-label {
  color: rgba(255, 255, 255, 0.65);
}

.about-values .ds-label::after {
  background: #e53935;
}

body.wtx-subpage .about-values .ds-heading {
  color: #ffffff;
}

body.wtx-subpage .about-values .ds-heading .hero-accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ff8a80;
  -webkit-text-fill-color: #ff8a80;
}

.about-values-lead {
  max-width: 560px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-value-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 28px 22px 26px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.about-value-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(13, 27, 75, 0.06);
  pointer-events: none;
  user-select: none;
}

.about-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.08) rotate(-3deg);
}

.about-value-card--quality .about-value-icon {
  background: linear-gradient(145deg, #1a237e, #3949ab);
}

.about-value-card--trust .about-value-icon {
  background: linear-gradient(145deg, #1565c0, #42a5f5);
}

.about-value-card--india .about-value-icon {
  background: linear-gradient(145deg, #2e7d32, #66bb6a);
}

.about-value-card--innovation .about-value-icon {
  background: linear-gradient(145deg, #c62828, #ef5350);
}

.about-value-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #0d1b4b;
  letter-spacing: -0.01em;
}

.about-value-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #546e7a;
}

.about-value-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.about-value-card--quality .about-value-accent {
  background: linear-gradient(90deg, #1a237e, #3949ab);
}

.about-value-card--trust .about-value-accent {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.about-value-card--india .about-value-accent {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.about-value-card--innovation .about-value-accent {
  background: linear-gradient(90deg, #c62828, #ef5350);
}

@media (max-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-value-num {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .about-visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 120px 120px;
    min-height: 0;
  }

  .about-visual-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .about-photo-item--wide,
  .about-photo-item--tall,
  .about-photo-item--sm,
  .about-photo-item--md {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-photo-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .about-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-visual-main {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }

  .about-visual-cell {
    min-height: 140px;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-item--wide {
    grid-column: span 1;
  }
}
