.hero {
    /* position: relative;
  min-height: 100vh; */
  background: url("../images/about_header1.jpg") center/cover no-repeat;
    /* display: flex;
  flex-direction: column;
  justify-content: center; */
}

.who {
  /* display: grid;
  grid-template-columns: 40% 65%; */
  background-image: url('../images/whybg.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* align-items: center; */
  /* place-content: center; */
}

.who-left button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 1rem;
  color: #fff;
  /* box-shadow: none; */
}

.who-left p {
  font-size: 18px;
}

.who-left a {
  font-size: 20rem;
}

.who-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.who-right {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Yellow circle */
.who-right::before {
  content: "";
  position: absolute;
  /* width: 380px; */
  /* height: 380px; */
  height: 320px;
  width: 320px;
  border-radius: 50%;
  border: 6px solid #f4b000; /* Yellow border */
  z-index: 1;
}


.who-right img {
  /* width: 1150px; */
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}


.core-values-parallax {
  position: relative;
  /* min-height: 100vh; */
  min-height: 92vh;
  overflow: hidden;
  /* margin-bottom: 4rem; */
  /* background: #fff; */
}

/* DARK OVERLAY */
.core-values-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness here */
  z-index: 1;
}

/* actual parallax layer */
.parallax-bg {
  position: absolute;
  /* inset: 0; */
  inset: -20%;
  /* background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fff4cc 40%,
    #ffffff 100%
  ); */
  background: url("../images/parallax-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* content above parallax */
.core-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 100px 24px;
}


.section-title {
  /* font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  position: relative;
  display: inline-block; */
  font-size: 48px;
  color: #fff;
  /* color: #000; */
}

/* yellow brush highlight */
.section-title::after {
  /* content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 14px;
  background: #f5b942;
  z-index: -1;
  border-radius: 4px; */
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card .num {
  font-size: 96px;
  font-weight: 800;
  /* color: rgba(0,0,0,0.15); */
  /* color: rgba(0, 0, 0, 0.95); */
  /* color: #fff; */
   /* background: linear-gradient(90deg, #f5b700, #ff7a18); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #f5b700;
  display: block;
}

.value-card h4 {
  color: #f5b942;
  margin-top: -20px;
  /* font-size: 20px; */
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #f5b700, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card p {
  font-size: 15px;
  /* color: #333; */
  color: #d4d4d4;
}


/*================== Our mission section ==================*/
.mission {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    display: grid;
    grid-template-columns: 40% 50%;
    place-items: center;
    gap: 2.45rem;

    /* justify-content: space-between; */
}

.mission.section {
  padding: 80px 48px 5px;
}

.mission-left img {
    border-radius: 16px;
    width: 100%;
    /* height: 520px; */
}

/* .mission-left {
    display: flex;
    flex-direction: column;
} */

.mission-right {
    padding: 1rem;
}

.mission-right p {
    color: black;
    font-size: 1.2rem;
}




/*================== Our vision section ==================*/
.vision {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    display: grid;
    grid-template-columns: 40% 50%;
    place-items: center;
    gap: 2.45rem;

    /* justify-content: space-between; */
}

.vision.section {
  padding: 50px 48px 40px;
}

.vision-right img {
    border-radius: 16px;
    width: 100%;
}

/* .mission-left {
    display: flex;
    flex-direction: column;
} */

.vision-left {
    padding: 1rem;
}

.vision-left p {
    color: black;
    font-size: 1.2rem;
}


.book {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 6rem 0; */
  margin: 2rem 0 4rem;
}

.book button {
  width: 100%;
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: .55rem 4.25rem;
  border-radius: 6px;
  font-size: 1.24rem;
  color: var(--gold);

}



/* ===================== Our Journey Section ===================== */

.journey {
  position: relative;
  /* min-height: 70vh; */
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url("./assets/journey-bg.jpg") center / cover no-repeat; */
  /* padding: 100px 6%; */
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Background layer */
.journey-bg {
  position: absolute;
  inset: -20%;
  background: url("../images/journey-bg.jpg") center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

/* Overlay */
/* .journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
} */

/* Dark overlay */
.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* Inner content */
.journey-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  will-change: transform;
}

/* Heading */
.journey-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  /* color: var(--gold); */
  background-image: linear-gradient(160deg, #0D47A1, #00B5D2);
  background-size: 90%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #fff; */
}


/* Text */
.journey-content p {
  font-size: 22px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.95;
}


/* @media (max-width: 768px) {
  .journey {
    padding: 80px 5%;
  }

  .journey-content h2 {
    font-size: 40px;
  }

  .journey-content p {
    font-size: 20px;
  }
} */




/* @media (max-width: 900px) {
  .vision-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vision-left img {
    margin: 0 auto;
  }
} */


/*============================ Large tablets & small laptops ============================*/
@media (max-width: 1200px) {

  .who {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .who-right {
    width: 360px;
    height: 360px;
  }

  .who-right::before {
    width: 280px;
    height: 280px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission,
  .vision {
    grid-template-columns: 1fr 1fr;
  }

}


/*============================ for tablets ============================*/
@media (max-width: 992px) {

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

  .who-left p {
    font-size: 16px;
  }

  .who-cta {
    justify-content: center;
  }

  .who-right {
    margin: 2rem auto 0;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-content {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 40px;
  }

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

  .mission-right p,
  .vision-left p {
    font-size: 1.05rem;
  }

}



/*============================ for smaller tablets ============================*/
@media (max-width: 768px) {

  .who-right {
    width: 300px;
    height: 300px;
  }

  .who-right::before {
    width: 240px;
    height: 240px;
    border-width: 5px;
  }

  .section-title {
    font-size: 34px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-card .num {
    font-size: 72px;
  }

  .value-card h4 {
    font-size: 24px;
  }

  .journey {
    padding: 80px 20px;
  }

  .journey-content h2 {
    font-size: 38px;
  }

  .journey-content p {
    font-size: 18px;
  }

}


/*============================ for mobile devices ============================*/
@media (max-width: 576px) {

  .who-left p {
    font-size: 15px;
  }

  .who-right {
    width: 260px;
    height: 260px;
  }

  .who-right::before {
    width: 210px;
    height: 210px;
  }

  .section-title {
    font-size: 30px;
  }

  .core-values-parallax {
    margin-bottom: 0;
  }

  .parallax-bg {
    background-position: right;
  }

  .vision {
    padding-top: 0;
  }

  .mission-right p,
  .vision-left p {
    font-size: 1rem;
  }

  .book button {
    padding: 0.6rem 2rem;
    font-size: 1.05rem;
  }

  .journey {
    min-height: 45vh;
    margin-top: 0;
  }

  .journey-content h2 {
    font-size: 32px;
  }

  .journey-content p {
    font-size: 16px;
  }

}
