/* =========================
   ABOUT HERO (FIGMA CLEAN)
   ========================= */

.about-hero-figma{
  max-width: 1440px;
  margin: 0 auto;
  height: 600px;
  background: #F3F4F6;
  position: relative;
  overflow: hidden;
}

/* Purple rectangles */
.hero-rect{
  position: absolute;
  top: 0;
  height: 600px;
  background: #33235F;
}

.hero-rect-left{
  left: 0;
  width: 615px;
}

.hero-rect-right{
  right: 0;
  width: 215px; /* per your new requirement */
}

/* Middle space container (between the two rectangles) */
.about-hero-content{
  position: absolute;
  top: 50%;
  left: 615px; /* start after left rectangle */
  width: calc(100% - 615px - 215px); /* only the middle space */
  transform: translateY(-50%);
  display: flex;
  justify-content: center; /* center textbox in middle space */
  z-index: 2;
}

/* Layered hero image (on top of rectangles) */
.hero-front-layer{
  position: absolute;
  left: 0;       /* start from left side */
  top: 0;        /* top aligned */
  width: 1440px;  /* same as left rectangle width */
  height: auto; /* hero height */
  object-fit:scale-down; /* keeps png shape clean */
  z-index: 3;    /* above rectangles and above text if needed */
  pointer-events: none;
}

/* Text box size exactly like Figma */
.about-textbox{
  width: auto;
  height: auto;

  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 38px;
  margin-right: 28px;
}

/* Title + description styling */
.about-title{
  font-family: "Inter", sans-serif;
  font-size: 64px;
  line-height: 76px;
  font-weight: 700;
  color: #4D4D4D;
  margin: 0 28px 50px;
}

.about-title span{
  color: #BD1B64;
}

.about-paras{
  width: 100%;
}

.about-paras p{
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #505050;
  margin: 0;
}

.about-paras p + p{
  margin-top: 18px;
}

/* =========================
   CORE VALUES
   ========================= */
.core-values{
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 144px 110px;
  background: #ffffff;
  text-align: center;

  position: relative;
  overflow: hidden;
}
.core-back-layer{
  position: absolute;
  inset: 0;             /* top:0 right:0 bottom:0 left:0 */
  width: auto;
  height: auto;
  object-fit: cover;    /* fill section */
  z-index: 0;
  pointer-events: none;
  margin: 200px auto;
}

/* content above bg */
.core-title,
.core-grid,
.btn-download{
  position: relative;
  z-index: 1;
}

.core-title{
  font-family: "Inter", sans-serif;
  font-size: 64px;
  line-height: 58px;
  font-weight: 700;
  color: #4D4D4D;
  margin: 0 0 60px;
}

.core-title span{
  color: #BD1B64;
}

.core-grid{
  max-width: 1000px;
  margin: 200px auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  column-gap: 120px;
  row-gap: 100px;
}

.core-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-icon-img{
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
}

.core-item h3{
  margin: 20px 0 15px;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 28px;
  font-weight: 600;
  color: #18191F;
}

.core-item p{
  margin: 0;
  max-width: 324px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #505050;
}

/* Download button */
.btn-download{
  margin-top: 0px;
  width: 640px;
  height: 72px;
  padding: 0 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #BD1B64;
  color: #fff;
  text-decoration: none;

  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

/* Hover */
.btn-download:hover{
  opacity: 0.85;
}
