/* About page */

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f5f0;
  color: #1a1a1a;
}

/* ===== Hero ===== */
.hero-title {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
  color: #0d0d0d;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.55;
  color: #333333;
}

.avatar-group img.avatar-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-group img.avatar-box:first-child {
  margin-left: 0;
}

.ab-stat-card {
  border: 1px solid #e8e8e8;
  border-radius: 24px !important;
}

.ab-stat-tile {
  padding: 10px 4px;
}

.ab-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f3f2ee;
  color: #ea332d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.ab-stat-value {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.1;
}

.ab-stat-label {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 4px;
}

/* ===== Badges / pills / buttons (shared) ===== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: #333333;
  color: #e2e2e2;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  line-height: 1;
}

.badge-tag {
  background-color: #2d3134;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.back-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #333333;
  color: #e2e2e2;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 18px 9px 14px;
  border-radius: 50px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.back-pill-link i {
  font-size: 0.8rem;
}

.back-pill-link:hover {
  background-color: #111111;
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(234, 51, 45, 0.18), 0 8px 24px rgba(234, 51, 45, 0.35);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.cta-btn .btn-text {
  background-color: #333333;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn .btn-arrow {
  background-color: #333333;
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover .btn-text,
.cta-btn:hover .btn-arrow {
  background-color: #111111;
  box-shadow: 0 0 0 6px rgba(234, 51, 45, 0.18), 0 8px 24px rgba(234, 51, 45, 0.35);
}

.cta-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* ===== Infinite ticker (brands / awards / work reel) ===== */
.ticker-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0px;
  white-space: nowrap;
  width: max-content;
}

.slide-left {
  animation: abMarqueeLeft 20s linear infinite;
}

.slide-right {
  animation: abMarqueeRight 20s linear infinite;
}

@keyframes abMarqueeLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes abMarqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

.brands-section {
  background-color: #f4f4f2;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  overflow: hidden;
}

.brand-ticker-track {
  gap: 0;
}

.brand-box {
  background-color: #f4f4f2;
  border-right: 1px solid #d0d0d0;
  height: 120px;
  width: 180px;
  min-width: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.brand-img {
    max-height: 85px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    mix-blend-mode: exclusion;
    filter: grayscale(100%);
    opacity: 0.35;
    transition: all 0.3s ease;
}

.brand-box:hover .brand-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.award-ticker-section .ticker-track {
  animation-duration: 32s;
}

@media (max-width: 576px) {
  .brand-box {
    width: 130px;
    height: 90px;
  }

  .brand-img {
    max-height: 60px;
  }
}

/* ===== Our Story ===== */
.ab-story-copy {
  max-width: 700px;
  color: #333333;
  line-height: 1.7;
}

.ab-story-copy p {
  margin-bottom: 1rem;
}

.ab-timeline {
  border-left: 2px solid #e2e0da;
  padding-left: 28px;
}

.ab-timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.ab-timeline-item:last-child {
  padding-bottom: 0;
}

.ab-timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ea332d;
  box-shadow: 0 0 0 4px rgba(234, 51, 45, 0.15);
}

.ab-timeline-year {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d0d0d;
  margin-bottom: 4px;
}

.ab-timeline-text {
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 0;
}

/* ===== Work reel ===== */
.section-title {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.work-reel-section {
  background-color: #f3f2ee;
}

.work-reel-track {
  gap: 20px;
}

.work-reel-item {
  position: relative;
  flex-shrink: 0;
  min-width: 0;
  width: auto;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e2e0da;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.work-reel-img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-reel-item:hover .work-reel-img {
  transform: scale(1.06);
}

.work-reel-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  background-color: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Service cards ===== */
.ab-service-card {
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.ab-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f3f2ee;
  color: #ea332d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ab-service-card:hover .ab-service-icon {
  background-color: #ea332d;
  color: #ffffff;
}

.ab-service-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.ab-service-desc {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 14px;
}

.ab-service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ea332d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Recognition / trust section ===== */
.main-heading {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
}

.trust-section {
  background-color: #f9f8f5;
}

.trust-heading {
  font-size: 2.2rem;
}

.section-desc {
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.5;
  color: #444444;
}

/* ===== Testimonials ===== */
.testimonial-card {
  height: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-quote-icon {
  color: #ea332d;
  font-size: 1.3rem;
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #333333;
  line-height: 1.55;
  margin-bottom: 18px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #111111;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: #888888;
}

.review-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2b2e30;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.review-link-pill i {
  color: #ea332d;
}

.review-link-pill:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .trust-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .work-reel-item {
    height: 200px;
  }

  .ab-timeline {
    padding-left: 22px;
  }

  .ab-timeline-dot {
    left: -28px;
  }
}
