/* SECTION */

/* APPLY SAME FONT EVERYWHERE */
.who-banner,
.who-banner * {
  font-family: "Poppins", sans-serif;
}
.who-banner {
  background: #ebe0f7;
  padding: 80px 10px;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.who-banner .container {
  max-width: 1400px;   /* was 1200px */
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* reduced gap */
}

/* LEFT */
.who-left {
  flex: 1.2;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.breadcrumb .sep {
  margin: 0 8px;
}

.breadcrumb .active {
  color: #17a2a2;
  font-weight: 500;
}

/* HEADING */
.who-left h1 {
  font-size: 48px;
  font-weight: 600; /* keep same weight family */
  line-height: 1.3;
  color: #0f766e;
  margin-bottom: 20px;
}
.who-left h1 span {
  color: #22c55e;
}

/* TEXT */
.desc {
  font-size: 16px;
  font-weight: 400;
  color: #5f6b7a;
  line-height: 1.8;
  margin-bottom: 20px;
}
.quote {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.8;
  font-style: normal; /* remove italic for uniform look */
}

/* RIGHT IMAGE */
.who-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.who-right img {
  width: 100%;
  max-width: 600px; /* increased from 500px */
  border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .who-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .who-left h1 {
    font-size: 36px;
  }

  .who-right img {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .who-banner {
    padding: 50px 15px;
  }

  .who-left h1 {
    font-size: 28px;
  }

  .desc,
  .quote {
    font-size: 14px;
  }
}

.who-heading {
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 900px;
  line-height: 1.1;
  margin-bottom: 20px;

  /* Gradient Text */
  background: linear-gradient(90deg, #0f9ea8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SECOND LINE */
.who-heading span {
  display: inline-block;

  background: linear-gradient(90deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .who-heading {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .who-heading {
    font-size: 30px;
  }
}

/* memory css*/
.memory-section {
  background: linear-gradient(135deg, #eef3f3, #feffff);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* FLEX LAYOUT */
.memory-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE SIDE */
.memory-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* IMAGE STYLE */
.memory-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  /* 🔥 AUTO MOVEMENT */
  animation: floatMove 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatMove {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* CONTENT SIDE */
.memory-content {
  flex: 1.3;
}

/* TAG */
.memory-tag {
  display: inline-block;
  background: #dff1ee;
  color: #0ea481;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* TITLE */
.memory-title.memory-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 42px;

  background: linear-gradient(90deg, #118a8f, #2bb673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.memory-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #1b9c86; /* teal tone like your image */
}

/* TEXT */
.memory-content p {
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.9;
  margin-bottom: 18px;
}

@media (max-width: 992px) {
  .memory-container {
    flex-direction: column;
    text-align: center;
  }

  .memory-image img {
    max-width: 280px;
  }
}

/*mission*/

.mv-section {
  padding: 80px 20px;
  background: #f8fbfb;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.mv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* CARD */
.mv-card {
  flex: 1;
  background: #f2f4f5;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #b7e4dc; /* light green border like your image */

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ICON BOX */
.mv-icon {
  width: 60px;
  height: 60px;
  background: #dff1ee;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mv-icon i {
  font-size: 22px;
  color: #16a34a;
}

/* TITLE */
.mv-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937;
}

/* TEXT */
.mv-card p {
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.9;
}

/* ================= HOVER EFFECT ================= */

/* ACTIVE (green one default) */
.mv-card.active {
  background: #1fa37a;
  color: #fff;
}

.mv-card.active h3,
.mv-card.active p {
  color: #fff;
}

.mv-card.active .mv-icon {
  background: rgba(255,255,255,0.2);
}

.mv-card.active .mv-icon i {
  color: #fff;
}

/* HOVER CHANGE */
/* 🔥 HOVER = ZOOM OUT (actually scale up slightly) */
.mv-card:hover {
  transform: scale(1.04); /* smooth zoom */
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* IMPORTANT: REMOVE COLOR CHANGE */
.mv-card:hover h3,
.mv-card:hover p,
.mv-card:hover .mv-icon i {
  color: inherit;
}
.mv-card:hover h3,
.mv-card:hover p {
  color: #333030;
}

.mv-card:hover .mv-icon {
  background: #dff1ee; /* keep same */
}

.mv-card:hover .mv-icon i {
  color: #1fa37a;
}

@media (max-width: 992px) {
  .mv-container {
    flex-direction: column;
  }

  .mv-card {
    padding: 35px;
  }
}


/*values*/

.values-section {
  padding: 80px 20px;
  background: #f8fbfb;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.values-head {
  text-align: center;
  margin-bottom: 60px;
}

.advisory-section-tag {
  display: inline-block;
  background: #dff1ee;
  color: #1b9c86;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 10px;
}

.values-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2937;
}

/* GRID */
.values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.value-card {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  background: #dff1ee;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 26px;
  color: #16a34a;
}

/* TEXT */
.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
}

.value-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* SHOW ANIMATION */
.value-card.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-head h2 {
    font-size: 28px;
  }
}

/*journey*/

.journey-section {
  padding: 100px 20px;
  background: #f6f8f8;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.journey-head {
  text-align: center;
  margin-bottom: 80px;
}

.journey-head h2 {
  font-size: 42px;
  font-weight: 700;

  background: linear-gradient(90deg, #0f8f94, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-head p {
  color: #6b7280;
  font-size: 16px;
}
/* TIMELINE */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  width: 3px;
  background: #9fd5c8;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

/* LEFT */
.timeline-item.left {
  left: 0;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
}

/* DOT */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
 background: linear-gradient(90deg, #0f8f94, #22c55e);
  border-radius: 50%;
  top: 40px;
  right: -7px;
}

.timeline-item.right::after {
  left: -7px;
}

/* CARD */
.timeline-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

.timeline-item.left .timeline-card {
  transform: translateX(-100px);
}

/* TEXT */
.timeline-card h3 {
  background: linear-gradient(90deg, #0f8f94, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-card p {
  color: #5f6b7a;
  line-height: 1.7;
}

/* SHOW ANIMATION */
.timeline-item.show .timeline-card {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 13px;
  }

  .timeline-item.right::after {
    left: 13px;
  }

  .timeline-card {
    transform: translateY(40px) !important;
  }

  .timeline-item.show .timeline-card {
    transform: translateY(0) !important;
  }
}


/*leadership*/

.advisory-section {
  padding: 80px 20px;
  background: #f7f9f9;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.values-section-tag {
  display: inline-block;
  background: #dff1ee;
  color: #1b9c86;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;

  background: linear-gradient(90deg, #0f8f94, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p {
  color: #6b7280;
}

/* GRID */
.advisory-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
/* CARD BASE */
.advisor-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* IMAGE */
.img-box {
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* TEXT */
.info h3,
.info p,
.role {
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.advisor-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* IMAGE ZOOM */
.advisor-card:hover img {
  transform: scale(1.1);
}

/* TEXT HIGHLIGHT */
.advisor-card:hover h3 {
  color: #118a8f;
}

.advisor-card:hover .role {
  color: #0f9ea8;
}

/* SOFT GLOW OVERLAY */
.advisor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,163,74,0.08),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}
.advisor-card:hover::before {
  opacity: 1;
}
/* CONTENT */
.info {
  padding: 20px;
  text-align: center;
}

.info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2937;
}

.role {
  display: block;
  font-size: 14px;
  color: #16a34a;
  margin-bottom: 10px;
}

.info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT */
.advisor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.advisor-card:hover img {
  transform: scale(1.08);
}

/* subtle overlay glow */
.advisor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(transparent, rgba(22,163,74,0.1));
  opacity: 0;
  transition: 0.4s;
}

.advisor-card:hover::after {
  opacity: 1;
}

@media (max-width: 992px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advisory-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }
}

/*team*/

.team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef6f5, #e6f1ef);
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.team-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.team-head {
  text-align: center;
  margin-bottom: 70px;
}

.team-tag {
  display: inline-block;
  background: #dff1ee;
  color: #118a8f;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* HEADING */
.team-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2937;
}

.team-head h2 span {
  background: linear-gradient(90deg, #118a8f, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.divider span {
  width: 60px;
  height: 2px;
  background: #9fd5c8;
}

.divider i {
  color: #118a8f;
}

/* SUBTEXT */
.team-head p {
  color: #6b7280;
  max-width: 500px;
  margin: auto;
  line-height: 1.7;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

/* IMAGE */
.team-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f3f6f7;
  margin-bottom: 20px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* TEXT */
.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1f2937;
}

.team-card span {
  display: block;
  color: #16a34a;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT */
.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.team-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-head h2 {
    font-size: 28px;
  }
}