/* =========================================================
   ABOUT — WORLD CLASS UI
   File: static/css/about.css
   ========================================================= */

/* Page spacing so content never sits under the sticky header */
.breadcrumb-area,
.about,
.work,
.testimonial,
.newslatter{
  position: relative;
}

.breadcrumb-area{
  padding-top: calc(var(--tv-header-h) + 18px);
  overflow: hidden;
}

/* Breadcrumb overlay polish */
.breadcrumb-area::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.55) 100%
  );
  pointer-events:none;
}

.breadcrumb__text{
  position: relative;
  z-index: 2;
}

.breadcrumb__text h2{
  font-weight: 900;
  letter-spacing: -0.6px;
  font-size: clamp(28px, 4vw, 44px);
  text-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* About section refinement */
.about.spad{
  padding-top: 70px;
  padding-bottom: 70px;
}

.about__title h2{
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.about__title .primary-btn{
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(16,24,40,.12);
}

/* Make about text feel premium */
.about__text{
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(16,24,40,.10);
  border: 1px solid rgba(16,24,40,.06);
}

.about__text h5{
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.about__text p{
  font-size: 16.5px;
  line-height: 1.85;
  color: #344054;
}

/* About video card feel */
.about-video{
  padding: 40px 0 10px;
}

.about__video{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16,24,40,.16);
  border: 1px solid rgba(255,255,255,.12);
}

.about__video::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.25),
    rgba(0,0,0,.45)
  );
  pointer-events:none;
}

/* Work steps cards */
.work.work-about.spad{
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-title h2{
  font-weight: 900;
  letter-spacing: -0.6px;
}

.work__item{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16,24,40,.06);
  box-shadow: 0 16px 44px rgba(16,24,40,.08);
  padding: 24px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.work__item:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(16,24,40,.14);
}

.work__item__number{
  font-weight: 900;
  opacity: .35;
  letter-spacing: -0.6px;
}

.work__item h5{
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-top: 10px;
}

.work__item p{
  color: #475467;
  line-height: 1.7;
}

/* Testimonials overlay polish */
.testimonial.set-bg{
  position: relative;
  overflow: hidden;
}

.testimonial.set-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.70) 100%
  );
  pointer-events:none;
}

.testimonial .container{
  position: relative;
  z-index: 2;
}

.testimonial__item{
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(16,24,40,.20);
  border: 1px solid rgba(255,255,255,.35);
}

/* Mobile tweaks */
@media (max-width: 991px){
  .about__text{
    padding: 20px;
  }
  .work__item{
    padding: 20px;
  }
}
