/* ================= HERO ================= */
.about-hero {
  min-height: 55vh; /* reduced height */
  display: flex;
  align-items: center;
  background: url("../images/banner/about.jpg")
    no-repeat right center / cover;
}

.hero-inner {
  max-width: 560px;
  margin-left: 80px;
}

.hero-pill {
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 14px;
  color: #555;
  max-width: 460px;
}


/* ================= ABOUT ================= */
.about-page {
  background: #fff;
}



/* ================= COMMON ================= */
.about-premium,
.what-we-do,
.mission-premium,
.about-closing {
  position: relative;
  overflow: hidden;
}

.about-bg,
.mission-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,79,174,.15), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(79,210,255,.15), transparent 45%);
  filter: blur(60px);
}

.about-inner,
.mission-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.about-title span {
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= WHO WE ARE ================= */
/* ================= WHO WE ARE – PREMIUM ================= */

.who-we-are {
  position: relative;
  padding: 20px 0;
  background: linear-gradient(135deg,#ffffff,#fff9fc);
  overflow: hidden;
}

/* Color blobs */
.who-we-are .about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,79,174,0.22), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(79,210,255,0.22), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,176,0,0.18), transparent 50%);
  filter: blur(90px);
  z-index: 0;
}

.who-we-are .about-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Heading spacing */
.who-we-are .about-title {
  margin: 0 auto 40px;
}
.about-card {
    position: relative;
    background-color: #ffffff;
    background-image: url("../../assets/images/section2/section-2_content-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 60px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
    text-align: left;
}

.about-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}


/* Cute icon pills */
.about-icons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-icons span {
  background: linear-gradient(135deg,#fff0f7,#f0fbff);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-icons span:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* Entrance animation */
@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .who-we-are {
    padding: 20px 0;
  }

  .who-card {
    padding: 30px;
  }

  .who-we-are .about-title {
    font-size: 2rem;
  }
}

/* ================= WHAT WE DO ================= */
/* ================= WHAT WE DO – PREMIUM ================= */

.what-we-do {
  position: relative;
  padding: 20px 0;
  background: linear-gradient(135deg,#ffffff,#fff9fc);
  overflow: hidden;
}

/* Soft colourful blobs */
.what-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,79,174,0.18), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(79,210,255,0.18), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,176,0,0.16), transparent 50%);
  filter: blur(90px);
  z-index: 0;
}

.what-we-do .wrapper {
  position: relative;
  z-index: 1;
}

/* Subtitle */
.what-subtext {
  max-width: 560px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: #666;
}

/* Grid */
.do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  justify-items: center;
}

/* Cards */
.do-card {
  background: #ffffff;
  width: 100%;
  max-width: 280px;
  padding: 30px 26px;
  border-radius: 26px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animation */
.do-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 45px 90px rgba(0,0,0,0.14);
}

/* Icon */
.do-icon {
  font-size: 1.9rem;
  background: linear-gradient(135deg,#fff0f7,#f0fbff);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accent borders */
.do-card.pink   { border-top: 5px solid #ff4fae; }
.do-card.yellow { border-top: 5px solid #ffb000; }
.do-card.blue   { border-top: 5px solid #4fd2ff; }
.do-card.green  { border-top: 5px solid #6ce3c2; }
.do-card.purple { border-top: 5px solid #b084ff; }

/* Text */
.do-card span:last-child {
  font-size: 0.95rem;
  color: #333;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .what-we-do {
    padding: 20px 0;
  }

  .what-subtext {
    font-size: 1rem;
    margin-bottom: 36px;
  }
}
/* ================= CENTER ALIGN – WHAT WE DO ================= */

.what-we-do {
  text-align: center;
}

/* Center the pill */
.what-we-do .about-pill {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

/* Center the heading */
.what-we-do .about-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: keep subtitle centered if added later */
.what-we-do p {
  margin-left: auto;
  margin-right: auto;
}

/* ================= MISSION ================= */
/* ================= MISSION – ATTRACTIVE & PREMIUM ================= */

.mission-premium {
  position: relative;
  padding: 20px 0;
  background: linear-gradient(135deg,#fff7fb,#f6fbff);
  overflow: hidden;
}

/* Animated soft blobs */
.mission-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,79,174,0.22), transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(79,210,255,0.22), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,176,0,0.18), transparent 50%);
  filter: blur(80px);
  z-index: 0;
}

.mission-inner {
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */

.mission-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.mission-header .about-pill {
  margin: 0 auto 18px;
}

.mission-header .about-title {
  margin-bottom: 0;
}

/* Decorative divider */
.mission-header::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 32px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
}

/* ================= CONTENT GRID ================= */

.mission-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: stretch;
}

/* ================= LEFT – MISSION LIST ================= */

.mission-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  background: #ffffff;
  padding: 16px 22px;
  margin: 15px;
  border-radius: 18px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* ================= RIGHT – PROMISE CARD ================= */

.promise-card {
  position: relative;
  background:
    url("../../assets/images/section4/Our featured content_bg.png") no-repeat;
  background-size: cover;

  padding: 36px 34px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.promise-card h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promise-list li {
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .mission-premium {
    padding: 20px 0;
  }

  .mission-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-list li,
  .promise-list li {
    justify-content: center;
  }

  .promise-card {
    margin-top: 40px;
  }
}


/* ================= CLOSING ================= */
/* ================= ABOUT CLOSING – PREMIUM CTA ================= */

.about-closing {
  position: relative;
  padding: 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  background: #fffaf7;
}

/* Soft gradient glow */
.about-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, #ffe4ec 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, #e8f6ff 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, #fff1c9 0%, transparent 50%);
  opacity: 0.65;
  z-index: 0;
}

.about-closing .wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Title */
.about-closing .about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Gradient emphasis */
.about-closing .about-title span {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub text */
.closing-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}



@media (max-width: 768px) {
  .about-closing {
    padding: 3.5rem 1.25rem;
  }

  .about-closing .about-title {
    font-size: 1.8rem;
  }

  .closing-text {
    font-size: 0.95rem;
  }


}
