/* =========================
   ABOUT PAGE — FULL CSS
   Includes:
   1) Hero
   2) Feature Cards (3)
   3) Who We Are + Global Reach (2 rows)
========================= */


/* =========================
   1) ABOUT HERO (1:1)
========================= */
/* =========================
   GLOBAL FONT
========================= */

*{
  font-family: 'Poppins', sans-serif;
}


.aboutHero{
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.aboutHero__bg{
  position:absolute;
  inset:0;
  background: url("../../img/about/hero.png") center/cover no-repeat;
  transform: scale(1.02);
}

/* White pill */
.aboutHero__badge{
  position:absolute;
  left: 40%;
  top: 40%;

  background:#fff;
  color:#000;
  padding: 15px 27px;
  border-radius: 14px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

@media (max-width: 900px){
  .aboutHero{ height: 220px; }
  .aboutHero__badge{
    left: 22px;
    top: 70px;
    font-size: 22px;
    padding: 9px 16px;
    border-radius: 12px;
  }
}

@media (max-width: 520px){
  .aboutHero{ height: 190px; }
  .aboutHero__badge{ top: 62px; font-size: 20px; }
}


/* =========================
   2) FEATURE CARDS (1:1)
========================= */

.aboutFeatures{
  padding: 70px 0;
  background:#fff;
}

.aboutFeatures__grid{
  max-width: 1020px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.featCard{
  background:#ffffff;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 26px 24px 22px;
  text-align:center;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* Icon placeholder (replace with your img later) */
.featIcon{
  width: 42px;
  height: 42px;
  margin: 0 auto 25px;
  border-radius: 6px;
}

/* Title */
.featTitle{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color:#111;
}

/* Text */
.featText{
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5;
  color:#6b6b6b;
  max-width: 260px;
}

@media (max-width: 900px){
  .aboutFeatures__grid{
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}


/* =========================
   3) WHO WE ARE + GLOBAL REACH (1:1)
========================= */

.aboutBlocks{
  padding: 40px 0 90px;
  background:#fff;
}

.aboutBlocks__wrap{
  width: min(980px, 100%);
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 84px;
}

/* Row layout */
.aboutRow{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items:start;
}

/* Image placeholders */
.aboutRow__img{
  width: 360px;
  height: 360px;
  background:#e9e9e9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color:#888;
  border-radius: 0; /* sharp corners */
  overflow:hidden;
}

/* Right content */
.aboutRow__content{
  padding-top: 4px;
}

.aboutH{
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  color:#111;
  display:inline-block;
  position: relative;
  padding-bottom: 6px;
}

/* red underline */
.aboutH::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 120px;
  height: 3px;
  background:#ff1f1f;
  border-radius: 2px;
}

.aboutP{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color:#333;
  max-width: 430px;
}

/* Gradient button */
.aboutBtn{
  margin-top: 22px;
  width: 280px;
  height: 38px;
  border-radius: 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(90deg, #ff1f1f 0%, #ff8a00 100%);
  color:#fff;
  text-decoration:none;
  font-size: 13px;
  font-weight: 800;
}

/* Responsive for these rows */
@media (max-width: 980px){
  .aboutRow{
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items:center;
    text-align:left;
  }

  .aboutRow__img{
    width: min(420px, 100%);
    height: 320px;
  }

  .aboutRow__content{
    width: min(520px, 100%);
  }

  .aboutP{
    max-width: none;
  }

  .aboutBtn{
    width: 100%;
    max-width: 320px;
  }
}


/* =========================
   OPTIONAL: If you replace placeholders with images
   Use these classes if you want
========================= */

/* For hero image if you prefer <img> */
.aboutHero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* For "Who We Are" images if you use <img> instead of placeholder div */
.aboutImg{
  width: 360px;
  height: 360px;
  object-fit: cover;
  display:block;
}

@media (max-width: 980px){
  .aboutImg{
    width: 100%;
    height: 320px;
  }
}
