body {
  overflow-x: hidden;
}

/* Button Start Primary*/
.btn-mind-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  display: inline-flex;
  /* padding: 3px  2px 3px 18px; */
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid #000;
  background: #000;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 1px;

  text-decoration: none;
  transition: all 0.3s ease;
}



/* Circle Icon */
.btn-mind-primary .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  border: 1px solid #FFF;
  background: radial-gradient(73.3% 90.61% at 72.2% 11.84%, rgba(255, 155, 63, 0.32) 15.68%, rgba(255, 237, 64, 0.45) 40.7%, rgba(255, 132, 18, 0.32) 74.84%, rgba(255, 237, 64, 0.17) 100%), #FFED40;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) inset;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-mind-primary:hover {
  border-radius: 24px;
  border: 1px solid #F1AD00;
  color: #000 !important;
  background: radial-gradient(73.3% 90.61% at 72.2% 11.84%, rgba(255, 155, 63, 0.32) 15.68%, rgba(255, 237, 64, 0.45) 40.7%, rgba(255, 132, 18, 0.32) 74.84%, rgba(255, 237, 64, 0.17) 100%), linear-gradient(0deg, #FFED40 0%, #FFED40 100%), #090920;
  box-shadow: 4px 8px 14px 0 rgba(226, 204, 0, 0.36);
}

.btn-mind-primary:hover .btn-icon {
  background: #fff;
  border: 1px solid #F1AD00;
}

/* ===== Button Sizes ===== */



/* Secondary Button */

.btn-mind-secondary {
  border-radius: 50px;
  display: inline-flex;
  min-width: 165px;
  padding: 3px 18px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid #000;
  background: #FFF;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-mind-secondary:hover {
  box-shadow: 4px 8px 14px 0 rgba(226, 204, 0, 0.20);
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 768px) {
  .btn-mind-secondary {
    justify-content: start !important;
  }
}




/* Tertiary Button */

.btn-mind-tertiary {
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;

  width: 44px;
  height: 44px;
  flex-shrink: 0;
  aspect-ratio: 1/1;

  border-radius: 100px;
  border: 1px solid #F1AD00;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 15%) inset;


  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-mind-tertiary:hover {
  border-radius: 100px;
  border: 1px solid #F1AD00;
  background: radial-gradient(73.3% 90.61% at 72.2% 11.84%, rgba(255, 155, 63, 0.32) 15.68%, rgba(255, 237, 64, 0.45) 40.7%, rgba(255, 132, 18, 0.32) 74.84%, rgba(255, 237, 64, 0.17) 100%), #FFED40;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

/* ===== Button Sizes ===== */
/* Button End */


/* Badges Start */
.white-badge {
  display: inline-block;
  /* width: 154px; */
  padding: 8px 18px;
  border-radius: 20px;
  background: #FFFEDE;
  color: #2563EB;
  margin-bottom: 20px;
}

.grey-badge {
  display: inline-block;
  /* width: 154px; */
  padding: 8px 18px;
  border-radius: 20px;
  background: #F1F2F4;
  margin-bottom: 20px;
}

.light-yellow-badge {
  background: #FFFBD1;
  color: #2563EB;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-secondary);
  display: inline-block !important;
  margin-bottom: 20px;
}

.yellow-badge {
  background: #FCFA93;
  padding: 8px 16px;
  text-align: center;
  border-radius: 20px;
  display: inline-block;
  color: #2563EB;
}

.light-blue {
  background: #D9EDFD;
  padding: 8px 16px;
  text-align: center;
  border-radius: 24px;
  display: inline-block;
  color: #2563EB;
}

/* Badges End */



/* Breadcrumds Section Start */
.breadcrums-hero {
  padding: clamp(80px, 12vw, 156px) clamp(20px, 6vw, 80px) clamp(40px, 8vw, 60px);
  position: relative;
}

.breadcrums-glass-box {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  padding: 48px 32px;
  max-width: 100%;
}

.breadcrums-hero p {
  margin-top: 15px;
  color: #30343B;
}

/* Breadcrumds Section End */


/* Animation Start */
.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation End */




/* Hero Section Start */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: start;

  background-image: url("../images/mind/mind-hero.png");
  background-size: cover;
  background-position: center;

  padding-top: 145px;
  padding-bottom: 60px;
  /* 🔥 ADD (zoom safety) */
  color: #fff;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  /* 🔥 IMPORTANT FIX */
  gap: 20px;
  /* 🔥 ADD */
}

.hero-left {
  max-width: 60%;
  width: 100%;
  /* 🔥 FIX */
}

.hero-glass {
  padding: 32px;
  background: rgba(219, 219, 219, 0.58);
  backdrop-filter: blur(29px);
  max-width: 100%;
  /* 🔥 FIX */
}

.hero-glass h2 {
  font-size: clamp(42px, 4vw, 56px);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--dark);
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.56px;
  margin-bottom: 48px;

  /* 🔥 TEXT SAFETY */
  max-width: 100%;
  word-break: break-word;
}

.hero-buttons {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-left h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 48px;
  font-weight: 600;

  /* 🔥 TEXT SAFETY */
  max-width: 100%;
  word-break: break-word;
}

.hero-left p {
  color: #000;
  margin-bottom: 0;
  width: 95%;
  max-width: 100%;
  /* 🔥 FIX */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  line-height: 160%;
}

.hero-quote {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6.5px);
  color: #333;
  padding: 32px 48px;
  border-radius: 12px;
  margin-bottom: -50px;

  /* 🔥 ZOOM FIX */
  max-width: 100%;
  word-break: break-word;
}

.hero-quote p {
  font-family: var(--font-tertiary);
  font-weight: 400 !important;
  color: #000;
  margin-bottom: 0;
}

/* =========================
   TABLET (≤ 992px)
========================= */

@media (max-width: 992px) {

  .hero {
    padding: 120px 30px 60px !important;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    width: 100%;
  }

  .hero-glass {
    padding: 28px;
  }

  .hero-glass h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-quote {
    width: 100%;
    margin-bottom: 0;
    /* 🔥 FIX */
  }

}

/* =========================
   MOBILE (≤ 768px)
========================= */

@media (max-width: 768px) {

  .hero {
    padding: 120px 16px 60px;
  }

  .hero-glass {
    padding: 20px;
  }

  .hero-glass h2 {
    font-size: 32px;
  }

  .hero-left h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .hero-left p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-quote {
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
  }

}

/* Hero Section End */


/* Challenge Section Start */

.challenge-wrapper {
  position: relative;
}


.challenge-content {
  position: relative;
}

.connector {
  position: absolute;
  top: 160px;
  right: 0px;
  width: 300px;
  pointer-events: none;
}

.connector path {
  fill: none;
  stroke: #C1C5CD;
  stroke-width: 0.8;

  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

/* animation only when class added */
.connector.animate path {
  animation: drawConnector 2.5s ease-in-out forwards;
  /* slower & smoother */
}

@keyframes drawConnector {
  from {
    stroke-dashoffset: 1200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* TEXT POSITION */
.connector-text {
  position: absolute;
  bottom: -20px;
  left: 60px;
  color: #7E8695;
  font-family: var(--font-tertiary);
  font-style: italic;
}

@media (max-width:768px) {
  .connector-text {
    bottom: -50px;
  }
}

.top-row {
  display: flex;
  gap: 60px;
}

.stat-box {
  flex: 1;
}

.stat-number {
  font-size: clamp(90px, 10vw, 180px);
  font-weight: 600;
  color: #2563EB;
  line-height: 1;

  /* 🔥 safety */
  word-break: break-word;
}

.challenge-content {
  flex: 1;
}


@media (max-width:1024px) {

  .top-row {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 120px;
  }

}

@media (max-width:768px) {

  .section {
    padding: 40px 16px;
  }

  .stat-number {
    font-size: 80px;
  }
}

.connector-text {
  left: 0px;
}


.vuca-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 60px;
  gap: 0;
  position: relative;
}

/* IMAGE */

.vuca-image {
  position: relative;
  z-index: 1;
}

.vuca-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 16px;
  display: block;

  border-radius: 24px;
  border: 4px solid rgba(211, 211, 211, 0.35);
}

/* CARD WRAPPER */

.vuca-cards {
  position: relative;
  width: 860px;
  height: 420px;
  margin-left: -100px;
  z-index: 2;
}


/* CARD */
.vuca-card {
  position: absolute;
  width: 380px;
  height: 264px;
  max-width: 100%;
  min-height: 280px;
  /* minimum same rahega */
  padding: 32px;
  border-radius: 24px;
  background: #FCFCFC;
  transition: 0.3s;

  border: 0.667px solid #E26C53;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

/* CARD POSITIONS */

.vuca-card:nth-child(1) {
  top: -40px;
  left: 60px;
}

.vuca-card:nth-child(2) {
  top: -40px;
  right: 0;
}

.vuca-card:nth-child(3) {
  top: 45%;
  left: -10%;
}

.vuca-card:nth-child(4) {
  top: 45%;
  right: 18%;
}

/* TEXT */

.vuca-card .alpha {
  color: #941D2B;
  margin: 0;
}

.vuca-card h4 {
  margin: 10px 0;
}

.vuca-card p {
  color: #6b7280;
  line-height: 1.6;
}


@media (max-width:768px) {


  .vuca-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* IMPORTANT: overflow rokega */
  }

  .vuca-image {
    width: 90%;
    margin-bottom: 30px;
  }

  .connector {
    display: none;
  }

  .vuca-image img {
    width: 100%;
    max-width: 100%;
    padding: 0;
    /* padding hata diya overflow avoid karne ke liye */
  }

  .vuca-cards {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* full width use kare */
    gap: 16px;

    padding: 0 16px;
    /* side breathing space */
    box-sizing: border-box;
  }

  .vuca-card {
    position: static;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;

    text-align: left;
  }

}

/*Challenge Section End */


/* Challenge section 2nd version start */
.challenge-v2-image {
  position: relative;
  width: 540px;
  margin-top: 80px;
}



/* background image */
.challenge-v2-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  height: 248px;
}

/* glass card */
.challenge-v2-card {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 94%;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.33);
  background: #FFF;
  backdrop-filter: blur(10px);

  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.challenge-v2-card h5 {
  color: #2563EB;
  margin-bottom: 12px;
}

/* Right stats */
.challenge-v2-stat-card {
  border-radius: 24px;
  border: 1px solid rgba(60, 64, 73, 0.55);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
}

/* 🔥 HOVER EFFECT */
.challenge-v2-stat-card:hover {
  background: #FFFBD1;
  border: 1px solid #2563EB;
}

/* LEFT NUMBER FIX */
.challenge-v2-stat-card>p {
  min-width: 70px;
  margin: 0;
}

/* TEXT AREA */
.challenge-v2-stat-text {
  flex: 1;
}

/* author */
.challenge-v2-author {
  display: block;
  text-align: right;
  margin-top: 24px;
}

/* 🔥 HOVER EFFECT */
.challenge-v2-card:hover {
  background: #FFFBD1;
  border: 1px solid #2563EB;
}

/* Highlight card */
/* .challenge-v2-highlight {
  background: #FFFBD1;
  border: 1px solid #2563EB;
} */

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .challenge-v2-image {
    width: 100%;
    margin-top: 60px;
  }

  .challenge-v2-card {
    left: 20px;
    width: 92%;
  }

  .challenge-v2-stat-card {
    padding: 20px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .challenge-v2 {
    padding-top: 40px;
  }

  /* image section */
  .challenge-v2-image {
    width: 100%;
    margin-top: 40px;
  }

  .challenge-v2-image img {
    height: 200px;
  }

  /* glass card */
  .challenge-v2-card {
    position: relative;
    top: -100px;
    left: 0;
    width: 100%;
    padding: 20px;
  }

  /* stat cards */
  .challenge-v2-stat-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px !important;
  }

  /* number */
  .challenge-v2-stat-card>p {
    min-width: auto;
  }

  /* author */
  .challenge-v2-author {
    text-align: left;
  }

}

/* Challenge section 2nd version end */



/* Challenge Section 3rd Version Start */
.challenge-v3-image {
  position: relative;
  width: 100%;
  margin-top: 120px;

}

/* IMAGE */
.challenge-v3-image img {
  width: 94%;
  border-radius: 16px;
  display: block;
  height: auto;
  margin-left: 24px;
}

/* GLASS CARD */
.challenge-v3-card {
  position: absolute;
  top: clamp(-24px, -3vw, -10px);
  left: 0%;
  width: 92%;
  max-width: 100%;

  padding: 24px 32px;
  border-radius: 12px;

  border: 1px solid rgba(37, 99, 235, 0.33);
  background: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* 🔥 soft shadow */
  z-index: 2;
}

/* HEADING */
.challenge-v3-card h5 {
  color: #2563EB;
  margin-bottom: 12px;
}

/* TEXT */
.challenge-v3-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */
.challenge-v3-card:hover {
  background: #FFFBD1;
  border: 1px solid #2563EB;
}

/* 📱 Tablet */
@media (max-width: 991px) {

  .challenge-v3-image {
    margin-top: 80px;
  }

  .challenge-v3-image img {
    width: 100%;
    margin-left: 0;
  }

  .challenge-v3-card {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    padding: 20px;
  }
}


/* 📱 Mobile */
@media (max-width: 576px) {

  .challenge-v3-image {
    margin-top: 60px;
  }

  .challenge-v3-image img {
    width: 100%;
    margin-left: 0;
    border-radius: 12px;
  }

  .challenge-v3-card {
    position: relative;
    /* 🔥 overlap hata diya */
    top: 0;
    left: 0;
    transform: none;

    width: 100%;
    margin-top: -100px;
    /* slight overlap effect */
    padding: 18px;
    border-radius: 10px;
  }

  .challenge-v3-card h5 {
    font-size: 16px;
  }

  .challenge-v3-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Challenge section 3rd version end */




/* Vision Section Start */

/* LEFT IMAGE */
.vision-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.vision-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* GLASS TEXT */

.vision-glass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  padding: 32px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 10px;
}

.vision-glass p {
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

/* RIGHT CONTENT */

.vision-content {
  padding: 22px 18px;
}

.vision-content p {
  line-height: 1.7;
  color: #3C4049;
  margin-bottom: 27px;
}


/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */

@media (max-width:992px) {

  .vision-image {
    height: 420px;
  }

  .vision-glass {
    padding: 24px;
  }

  .vision-glass p {
    font-size: 28px;
  }

  .vision-content {
    padding: 10px 5px;
  }

}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width:768px) {

  .vision-image {
    height: 320px;
  }

  .vision-image img {
    position: relative;
  }

  .vision-glass {
    width: 90%;
    padding: 20px;
  }

  .vision-glass p {
    font-size: 20px;
    line-height: 1.5;
  }

  .yellow-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .vision-content h2 {
    font-size: 20px;
  }

  .vision-content p {
    font-size: 14px;
    margin-bottom: 18px;
  }

}


/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width:480px) {

  .vision-image {
    height: 260px;
  }

  .vision-glass p {
    font-size: 18px;
  }

}

/* Vision Section End */


/* Reach Section Start */
.reach-section {
  background-image: url("../images/mind/yellow-bg.png");
  background-size: cover;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Desktop */
  gap: 32px;
}

.reach-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  width: 100%;
}

.reach-number {
  margin-bottom: 0px;
  color: #25272D;
}

.reach-text {
  color: #474C57;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px) {
  .reach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* =========================
   MOBILE → 2 PER ROW
========================= */
@media (max-width:768px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
    /* ✅ 2 cards */
    gap: 16px;
  }

  .reach-card {
    padding: 25px 20px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width:480px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
    /* still 2 */
    gap: 12px;
  }

  .reach-card {
    padding: 20px 15px;
  }
}

/* Reach Section End */


/* Our Appraoch start  */
.approach-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 424px;
}

.approach-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.approach-card-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;

  background: url("../images/mind/yellow-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;

  padding: 12px 0px;
  border-radius: 12px;

  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: all .45s ease;
  overflow: hidden;
}

/* HOVER EFFECT */

.approach-card:hover .approach-card-label {
  height: 90%;
  justify-content: center;
  text-align: center;

  background: linear-gradient(180deg,
      rgba(246, 228, 141, 0.85),
      rgba(240, 201, 75, 0.85));
  backdrop-filter: blur(2px);
  /* optional premium effect */
}

/* header */

.approach-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 12px;
  transition: all .35s ease;
}

/* icon */

.approach-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .35s ease;
}

.approach-card-icon img {
  width: 24px;
}


.approach-card-icon-v2 {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .35s ease;
}

.approach-card-icon-v2 img {
  width: 32px;
}


/* title */

.approach-card-header .title {
  margin: 0;
}

/* description */

.approach-card-text {
  opacity: 0;
  margin-top: 15px;
  padding: 0px 12px;
  line-height: 1.6;
  transition: all .35s ease;
}

/* HOVER EFFECT */

/* HOVER EFFECT */

.approach-card:hover .approach-card-label {
  height: 90%;
  justify-content: center;
  text-align: center;
}

/* icon completely remove */

.approach-card:hover .approach-card-icon {
  display: none;
}

/* header ko center karo */

.approach-card:hover .approach-card-header {
  justify-content: center;
}

/* description */

.approach-card:hover .approach-card-text {
  opacity: 1;
}

/* responsive */

@media (max-width:991px) {

  .approach-card {
    height: 380px;
  }

}

@media (max-width:768px) {

  .approach-card {
    height: 340px;
  }


}

/* Our Appraoch End  */

/* =========================
   Our Partners Section
========================= */

.partners-grid {
  margin-top: 32px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;

  align-items: center;
  justify-items: center;
}

/* Partner Card */

.partner-card {
  width: 100%;
  max-width: 190px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border: 1px solid #FCE94D;
  border-radius: 8px;

  box-shadow:
    0 3px 6px rgba(236, 225, 255, 0.25),
    0 0 18px 6px rgba(111, 64, 202, 0.04);

  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-card img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

/* Hover */

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.08);
}

/* =========================
   Tablet
========================= */

@media (max-width:1024px) {

  .partners-grid {
    gap: 20px;
  }

  .partner-card {
    max-width: 170px;
    height: 85px;
  }

}

/* =========================
   Mobile
========================= */

/* ===== MOBILE AUTO SLIDER (No HTML change) ===== */
@media (max-width:768px) {

  .partners-grid {
    display: flex !important;
    overflow: hidden;
    gap: 10px;
  }

  .partner-card {
    min-width: 45%;
    /* 2 cards visible */
    flex: 0 0 50%;
    padding: 8px;
    box-sizing: border-box;
  }
}

/* What We Do Start */

.program-section .row>[class*="col-"] {
  display: flex;
}

/* BASE STYLES */

.program-section {
  background-image: url("../images/mind/yellow-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TOGGLE */

.program-toggle {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 28px;
  border-radius: 40px;

  border: 1px solid #000;
  background: #FCFCFC;
  ;

  color: #1F2937;
  cursor: pointer;
  transition: 0.3s;

  height: 72px;
}

/* radio circle */
.toggle-btn .radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  /* 🔥 prevent shrink */
  min-height: 20px;
  /* 🔥 prevent shrink */

  border-radius: 50%;
  border: 2px solid #2563EB;
  position: relative;

  display: inline-block;
  /* 🔥 stable layout */
  box-sizing: border-box;
  /* 🔥 border size issue fix */

  transition: all 0.3s ease;
}

/* active border */
.toggle-btn.active .radio {
  border-color: #FFF;
}

/* active dot */
.toggle-btn .radio::after {
  content: "";
  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: transparent;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);
  /* 🔥 hidden by default */
  transition: all 0.3s ease;
}

/* active dot visible */
.toggle-btn.active .radio::after {
  background: #FFF;
  transform: translate(-50%, -50%) scale(1);
}

/* active button */
.toggle-btn.active {
  background: #2563EB;
  color: #FFF;
  border: 1px solid #2563EB;
}

/* icon size */

.toggle-btn img {
  width: 22px;
  transition: 0.3s;
}

.toggle-btn.active img {
  filter: brightness(0) invert(1);
}

.dot {
  border: none;
  border-top: 2px dotted #5E6573;
  width: 98%;
  margin: 16px auto;
}

/* CARD */
.program-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;

}

.h-auto {
  height: auto !important;
}


.grey-border {
  border: 1px solid rgba(60, 64, 73, 0.55) !important;
}

.program-card-tag {
  background: #D9EDFD;
  color: #1F54C8;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.program-card-icon {
  display: flex;
  width: 72px;
  height: 72px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 25464208px;
  background: #FCFCFC;
}

.program-card-icon-v3 {
  display: flex;
  width: 98px;
  height: 98px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 25464208px;
  background: #FFFBD1;
}


@media (max-width: 768px) {
  .program-card .icon-img {
    width: 100px;
  }
}



@media (max-width: 768px) {
  .program-card-icon-v3 {
    width: 50px;
    height: 50px;
  }

  .program-card-icon-v3 img {
    width: 30px;
    height: 30px;
  }
}


.program-card:hover {
  border: 1px solid #2563EB !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.program-card:hover h3 {
  color: #2563EB;
}


.program-card h3 {
  margin-bottom: 20px;
  transition: 0.3s;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card .desc {
  color: #7E8695;
  /* letter-spacing: 1.2px; */
  line-height: 155%;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* kitni lines dikhani hai */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card .desc2 {
  color: #7E8695;
  /* letter-spacing: 1.2px; */
  line-height: 155%;
  margin-bottom: 40px;
}

/* IMPORTANT PART */

.program-card-bottom {
  margin-top: auto;
}

/* TOPICS */

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0px;
}

.topics span {
  background: #F1F2F4;
  color: #3C4049;
  padding: 8px 16px;
  border-radius: 20px;
}

/* EXPLORE */

.explore {
  text-decoration: none;
  color: #2563EB;
  font-weight: 500;
  transition: color .3s ease, letter-spacing .3s ease;
  margin-top: auto;
}


.program-card .session {
  line-height: 140%;
  letter-spacing: 0.18px;
  color: #3C4049;
  transition: color 0.3s ease;
  margin-top: auto !important;
}

.program-card:hover .session {
  color: #000;
  /* hover pe dark color */
}



.program-card hr {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid #E0E2E6;
  /* color yaha change kar sakte ho */
  margin: 12px 0;
  opacity: 1;

  margin-top: auto;
}

.program-card:hover .explore {
  font-weight: 700;
}

@media (max-width: 768px) {
  .program-card .explore {
    font-weight: 700 !important;
  }
}


/* HIDE */

.hidden {
  display: none;
}

/* RESPONSIVE */

@media (max-width:768px) {

  .program-card {
    padding: 20px !important;
  }

  .program-toggle {
    position: sticky;
    top: 68px;
    z-index: 999;
    background-image: url("../images/mind/yellow-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0;
  }



  .program-toggle button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .program-card h3 {
    font-size: 18px;
  }

  .program-card .desc,
  .program-card p {
    font-size: 16px;
  }

  .topics span {
    font-size: 12px;
    padding: 6px 12px;
  }

}

@media (max-width:480px) {




  .program-toggle {
    display: grid;
    /* flex hatao */
    grid-template-columns: repeat(1, 1fr);
    /* 2 per row */
    gap: 0px;
  }

  .m-grid1 {
    grid-template-columns: repeat(1, 1fr) !important;
    background: white !important;
  }

  .toggle-btn {
    width: 100%;
    /* full occupy kare */
    height: auto;
    /* overflow na ho */
    justify-content: center;
  }

  .program-toggle button {
    padding: 6px 0px 6px 40px;
    justify-content: start;
    font-size: 12px;
    margin: 4px;
    height: 52px;
  }

  .program-card h3 {
    font-size: 16px;
  }

  .program-card .desc,
  .program-card p {
    font-size: 14px;
  }

}

/* What We Do End */




/* CTA Section Start */
.cta-section {
  background-image: url("../images/mind/yellow-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
}

.cta-section .cta-container {
  max-width: 960px;
  margin: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* CTA Section End */







/* Contact Pages Start*/

.contact-option {
  position: relative;
  /* border-radius: 29px;
  border: 1px solid #000;
  background: #FCFCFC;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  height: 113px;
  transition: 0.3s; */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid #000;
  background: #FCFCFC;
  color: #1F2937;
  cursor: pointer;
  transition: 0.3s;
  height: 72px;
}

.contact-option:has(.contact-radio:checked) {
  background: #2563EB;
  color: #fff;
  border-color: #2563EB;
}

.contact-option:has(.contact-radio:checked) i,
.contact-option:has(.contact-radio:checked) span {
  color: #fff;
}


/* Radio white */
.contact-option:has(.contact-radio:checked) .contact-radio {
  border-color: #fff;
}

/* Radio inner dot white */
.contact-option:has(.contact-radio:checked) .contact-radio::before {
  background: #fff;
}

.contact-option i {
  color: #2563eb;
}

.contact-option span {
  font-weight: 500;
}


.contact-radio {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 24px;
  height: 24px;
  accent-color: #2563EB;
  cursor: pointer;
}


.contact-section {
  background: url('../images/mind/yellow-bg.png') center/cover no-repeat;
}

/* 64px gap between col-8 and col-4 */
.contact-row {
  --bs-gutter-x: 64px;
}

.contact-form-box {
  border-radius: 24px;
  border: 1px solid #0B0616;
  background: #FFF;
  padding: 32px;
}

/* LABEL */

.form-label {
  display: block;
}

.form-label span {
  color: #ef4444;
}

/* INPUT */

.form-control {
  border-radius: 24px;
  border: 1px solid #0B0616;
  padding: 12px 18px;
  height: 61px;
  width: 100%;
  font-size: 16px;
  background-color: #fff;
}

/* textarea */
textarea.form-control {
  border-radius: 18px;
  height: 140px;
}

/* select dropdown */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 61px;
  padding-right: 40px;
  background-color: #fff;
  background-image: url("../images/mind/arrow-down.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}


/* CARD */

.contact-card {
  border-radius: 24px;
  border: 1px solid #0B0616;
  background: #FCFCFC;
  padding: 40px;
}

.contact-card h5 {
  margin-bottom: 32px;
}

/* ITEM */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-item i {
  color: #2563eb;
  margin-top: 4px;
}

/* LABEL */

.contact-item .label {
  color: #7E8695;
  display: block;
  margin-bottom: 4px;
}

/* TEXT */

.contact-item p {
  margin: 0;
  color: #111;
  line-height: 1.6;
}


@media (max-width: 992px) {

  .breadcrums-hero {
    padding: 120px 40px 50px 40px;
  }

  .breadcrums-glass-box {
    padding: 32px;
  }

  .contact-option {
    padding: 20px;
  }

  .contact-option span {
    font-size: 20px;
  }

  .contact-row {
    --bs-gutter-x: 40px;
  }

}



@media (max-width: 768px) {

  .breadcrums-hero {
    padding: 120px 20px 40px 20px;
  }

  .breadcrums-glass-box {
    padding: 24px;
  }

  /* options buttons */

  .contact-option {
    padding: 18px;
    justify-content: flex-start;
  }

  .contact-option span {
    font-size: 18px;
  }

  /* form section */

  .contact-row {
    --bs-gutter-x: 20px;
  }

  .contact-form-box {
    padding: 24px;
  }

  /* input */

  .form-control {
    height: 52px;
  }

  /* cards */

  .contact-card {
    padding: 28px;
  }

  .contact-item {
    margin-bottom: 28px;
  }

  /* map */

  iframe {
    height: 320px;
  }

}



@media (max-width: 480px) {

  .breadcrums-hero {
    padding: 120px 15px 30px 15px;
  }

  .breadcrums-hero h2 {
    font-size: 22px;
  }

  .breadcrums-hero h2 span {
    font-size: 26px;
  }

  .contact-option {
    gap: 12px;
  }

  .contact-option i {
    font-size: 20px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .contact-card {
    padding: 22px;
  }

}

/* Contact Pages End */


/*  WHAT WE DIAGNOSE START  */
.diag-section {
  position: relative;
  width: 100%;
}

.diag-container {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

/* horizontal scroll */
.diag-scroll {
  display: flex;
  gap: 30px;
  padding: 40px 20px;
  padding-right: 200px;
}

/* CARD */
.diag-card {
  width: 395px;
  min-width: 395px;
  height: 100%;
  /* min-height: 413px; */
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  padding: 32px;

  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  /* 🔥 important */
}

.diag-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  /* hidden initially */
  width: 100%;
  height: 100%;

  background: linear-gradient(to bottom,
      rgba(37, 99, 235, 0.25),
      rgba(37, 99, 235, 0));

  transition: all 0.4s ease;
}


.diag-card:hover::after {
  bottom: 0;
}


.diag-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.diag-card__top img {
  width: 44px;
  height: 44px;
}

.card-number {
  color: #CBDAFA;
}

.diag-card__list {
  list-style: none;
  padding: 0;
}

.diag-card__list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  align-items: flex-start;
}

.diag-card__list i {
  color: #2563EB;
  margin-right: 8px;
  margin-top: 8px;
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {

  .diag-container {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .diag-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
    transform: none !important;
    /* JS transform disable */
  }

  .diag-card {
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 18px;
  }

}





/*  WHAT WE DIAGNOSE End*/




/* Our Process Start */

.timeline-wrapper {
  position: relative;
  height: 100%;
}

.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* CONTINUOUS LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dbeafe;
}

/* ITEM */
.timeline-item {
  position: sticky;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}

/* LEFT SIDE */
.timeline-left {
  position: relative;
  min-width: 180px;
  text-align: center;
}

/* REMOVE OLD LINE */
.timeline-left .line {
  display: none;
}

/* DOT */
.timeline-left .dot {
  position: absolute;
  left: 18px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #2E63D6;
  background: #fff;
}

/* PHASE */
.phase {
  margin-left: 55px;
  transition: opacity 0.3s ease;
}

.phase p {
  color: #93c5fd;
  margin-bottom: 2px;
  line-height: 1;
}

.phase span {
  font-size: 14px;
  color: #2E63D6;
}

/* CARD */
.timeline-card {
  flex: 1;
  display: flex;
  gap: 40px;
  padding: 24px;
  transition: 0.3s ease;

  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.21);
  background: rgb(241, 242, 244);
}


/* IMAGE */
.timeline-card img {
  width: 380px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* timeline-card-content */
.timeline-card-content h4 {
  color: #2E63D6;
  margin-bottom: 8px;
}


/* TAGS */
.tags span {
  display: inline-block;
  background: #D9EDFD;
  color: #3C4049;
  padding: 8px 16px;
  border-radius: 22px;
  font-size: 12px;
  margin: 5px 5px 0 0;
}

.step1 {
  top: 12%;
}

.step2 {
  top: 24%;
}

.step3 {
  top: 36%;
}

.step4 {
  top: 48%;
}

.step5 {
  top: 60%;
}


.step1 {
  z-index: 1;
}

.step2 {
  z-index: 2;
}

.step3 {
  z-index: 3;
}

.step4 {
  z-index: 4;
}

.step5 {
  z-index: 5;
}




@media (max-width: 768px) {
  .timeline-wrapper {
    height: auto;
  }

  .timeline-item {
    position: relative;
    top: auto;
  }
}


/* =========================
TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-left {
    min-width: 130px;
  }

  .timeline-card {
    gap: 16px;
    padding: 20px;
  }

  .timeline-card img {
    width: 200px;
    height: 140px;
  }

  .phase p {
    font-size: 24px;
  }

}

/* =========================
MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  .timeline-left {
    width: 100%;
    padding-left: 20px;
    text-align: start;
  }

  .timeline-left .dot {
    left: -13px;
    top: 0px;
  }

  .phase {
    margin-left: 20px;
  }

  .phase p {
    font-size: 20px;
  }

  .phase span {
    font-size: 12px;
  }

  .timeline-card {
    flex-direction: column;
    margin-left: 30px;
    padding: 16px;
  }

  .timeline-card img {
    width: 100%;
    height: 220px;
  }

  .timeline-card-content h4 {
    font-size: 18px;
  }

  .timeline-card-content p {
    font-size: 13px;
  }

  .tags span {
    font-size: 11px;
    padding: 5px 10px;
  }

}

/* =========================
SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .timeline-section {
    padding: 60px 15px;
  }

  .timeline-card {
    margin-left: 25px;
  }

  .phase p {
    font-size: 18px;
  }

}

/* Our Process End */



/* Features Section Start */
.feature-hero {
  position: relative;
  height: 100%;
  /* background: linear-gradient(0deg, #25272D 0%, #25272D 100%), linear-gradient(0deg, rgba(89, 89, 89, 0.45) 0%, rgba(89, 89, 89, 0.45) 100%) 50% / cover no-repeat; */
  /* background: #000; */
  /* background: url("../images/mind/bg-image.png") center/cover no-repeat; */
}

/* STICKY CENTER TEXT */
.feature-center {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.feature-center p {
  text-shadow: 0 4px 6px rgb(0 0 0 / 49%), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.feature-center h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  z-index: 1;
}

/* SCROLL WRAPPER */
.feature-scroll {
  position: relative;
  margin-top: -100vh;
  /* overlap start */
}

/* CARDS */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 100vh;
  padding-bottom: 30vh;
}

/* CARD */
.feature-card {
  width: 48%;
  height: clamp(280px, 40vw, 408px);
  padding: 56px;
  display: flex;
  align-items: flex-end;
  font-size: 22px;
  color: #fff;
  border: 1px solid #000;
  border-radius: 12px;
  z-index: 2;
}

/* LEFT RIGHT */
.feature-card:nth-child(odd) {
  align-self: flex-start;
}

.feature-card:nth-child(even) {
  align-self: flex-end;
}

/* TABLET VIEW */
@media (min-width: 769px) and (max-width: 1024px) {

  .feature-cards {
    padding-top: 70vh;
    padding-bottom: 30vh;
  }

  .feature-card {
    width: 60%;
    padding: 40px;
  }

  .feature-card:nth-child(odd) {
    align-self: flex-start;
  }

  .feature-card:nth-child(even) {
    align-self: flex-end;
  }

  .feature-center h1 {
    font-size: 48px;
  }

}

/* RESPONSIVE */
@media (max-width: 768px) {

  .feature-card {
    width: 100%;
    align-self: center !important;
    padding: 20px;
    height: 100%;
  }
}

/* Feature Section End */

/* Impact Css Start */
.impact-card {
  padding: 24px;
  height: 100%;

  border-radius: 8px;
  border: 0.8px solid rgba(37, 99, 235, 0.18);
  background: #FCFCFC;
}

/* Impact CSS End */


/* Interpersonal Card Start Css */

.interpersonal-card {
  border-radius: 16px;
  border: 1px solid #C1C5CD;
  background: #ffffff;
  padding: 32px;
  height: 100%;
  min-height: 420px;
  text-align: left;

  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* COMMON BG LAYER */
.interpersonal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
  width: 100%;
  height: 25%;
  transition: height 0.5s ease;
  z-index: 0;
}

/* BLUE BG */
.card-blue::before {
  background: #2E63D6;
}

/* YELLOW BG */
.card-yellow::before {
  background: #FCE94D;
}

/* HOVER FULL */
.interpersonal-card:hover::before {
  height: 100%;
}

/* CONTENT ABOVE */
.interpersonal-card-body,
.interpersonal-card-img {
  position: relative;
  z-index: 2;
}

/* ICON */
.interpersonal-card-img {
  width: 90px;
  height: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;


}

.interpersonal-card-img img {
  width: 48px;
}

/* TITLE + TEXT DEFAULT */
.interpersonal-card h5,
.interpersonal-card p {
  color: #000;
  transition: 0.3s;
}

/* DESC WRAP */
.desc-wrap {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* DESC TEXT */
.interpersonal-card p {
  opacity: 0;
  transform: translateY(25px);
  margin-top: 10px;
}


.card-blue:hover h5,
.card-blue:hover p {
  color: #fff;
}

.card-yellow:hover h5 {
  color: #000;
}

.card-yellow:hover p {
  color: #404040;
}

/* DESC SHOW */
.interpersonal-card:hover .desc-wrap {
  max-height: 200px;
}

.interpersonal-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .interpersonal-card {
    min-height: auto;
  }

  .desc-wrap {
    max-height: 100%;
  }

  .interpersonal-card p {
    opacity: 1;
    transform: none;
  }
}

/* Interpersonal Card End Css */


/* What We Stand By Section Start*/

.standby-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 452px;

  border: 1px solid #000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.standby-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* label */
.standby-card-label {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #2564ebeb 100%);
  padding: 12px 20px;
  height: 130px;
  display: flex;
  flex-direction: column;

  transition: all .45s ease;
  overflow: hidden;
}

/* FIXED HEADER (COLUMN) */
.standby-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* IMPORTANT RESET (THIS FIXES YOUR ISSUE) */
.standby-card-header .title {
  margin: 0;
  line-height: 1.2;
}

/* text */
.standby-card-text {
  opacity: 0;
  margin-top: 15px;
  line-height: 1.6;
  transition: all .35s ease;
}

/* hover */
.standby-card:hover .standby-card-label {
  height: 100%;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(2px);
}

.standby-card:hover .standby-card-text {
  opacity: 1;
}

/* responsive */
@media (max-width:991px) {
  .standby-card {
    height: 380px;
  }
}

@media (max-width:768px) {
  .standby-card {
    height: 340px;
  }
}

/* What We Stand By Section End*/




/* Conversertion CSS Start */
.conversation-wrapper {
  max-width: 90%;
  margin: 0 auto;
}

/* CARD BASE */
.conversation-card {
  position: relative;
  margin-bottom: -20px;
  opacity: 0;
  text-align: start;
  /* default smooth animation */
  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.5s ease;
}

/* 👉 1 & 3 (bottom-right → grow) */
.conversation-card.right {
  transform-origin: bottom right;
  transform: scale(0.6) translate(60px, 60px);
}

/* 👉 2 & 4 (bottom-left → grow) */
.conversation-card.left {
  transform-origin: bottom left;
  transform: scale(0.6) translate(-60px, 60px);
}

/* SHOW STATE */
.conversation-card.show {
  transform: scale(1) translate(0, 0);
  opacity: 1;
}

/* SVG */
.bg-svg {
  width: 100%;
  display: block;
}

/* CONTENT */
.inner {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 60px;
  width: 100%;
  height: 100%;
  display: flex;
}

.inner .content {
  align-self: flex-start;
  transform: translateY(20px);
}

/* NUMBER */
.number {
  font-size: 152px;
  font-weight: bold;
  color: #E0E2E6;
  margin-right: 20px;
  line-height: 0.5;
}

/* Tablet + Mobile (<= 991px) → hide section */
@media (max-width: 991px) {
  .conversation-wrapper {
    display: none;
  }
}

/* Conversertion CSS End */


/* FAQ Section CSS Start  */
.faq-section {
  background: #F2F9FE;
}

/* FLEX */
.faq-flex {
  display: flex;
  gap: 48px;
}

/* LEFT */
.faq-left {
  width: 32%;
}

.faq-card {
  background: url('../images/mind/faq.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 24px 24px 240px;
  color: #fff;
  height: 450px;
}

.faq-card h6 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 120%;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(7px);
  padding: 8px 16px;
  border-radius: 8px;
}

.faq-card p {
  font-size: 18px;
  color: #1A46A7;
}

/* RIGHT */
.faq-right {
  width: 68%;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #EC7ECE;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
}

.faq-item.active {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffba0a;
}

/* QUESTION */
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.icon {
  width: 26px;
  height: 26px;
  background: #eee;
  color: #7E8695;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .icon {
  background: #f4b400;
  color: #fff;
  transform: rotate(180deg);
}

/* ANSWER (SMOOTH 🔥) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
  padding: 10px 20px 16px;
}


/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .faq-flex {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-card {
    padding: 20px 20px 180px;
  }

  .faq-card h6 {
    font-size: 32px;
  }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {
  .faq-card {
    padding: 20px;
    border-radius: 12px;
    background-position: top;
    height: 350px;
  }

  .faq-card h6 {
    font-size: 26px;
    line-height: 130%;
  }

  .faq-card p {
    font-size: 14px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .icon {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {
  .faq-card h6 {
    font-size: 22px;
  }

  .faq-card {
    padding: 16px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

/* FAQ Section CSS End */



/* CARD */
.program-card-v2 {
  padding: 48px 32px;
  border-radius: 20px;
  border: 1px solid #000;
  background: #FCFCFC;
  box-shadow: 0 2.278px 4.556px 0 rgba(0, 0, 0, 0.10);
}

/* LEFT LIST */
.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-list li {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.skill-list span {
  margin-right: 10px;
  color: #000;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FFF;
  flex-shrink: 0;
}

/* ========================= */
/* TIMELINE */
/* ========================= */

/* TIMELINE */
.timeline-v2 {
  position: relative;
  padding-left: 0px;
  /* fixed space */
}

/* LINE */
.timeline-v2::before {
  content: '';
  position: absolute;
  left: -20px;
  /* 👈 FIXED */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d1d5db;
}

/* ITEM */
.timeline-item-v2 {
  position: relative;
  margin-bottom: 40px;
}

/* DOT PERFECT OVERLAP */
.timeline-item-v2 .dot {
  position: absolute;

  left: -20px;
  top: 0px;

  transform: translateY(-98%);
  width: 16px;
  height: 16px;

  background: #2563EB;
  border-radius: 50%;
  border: 4px solid #E9EFFD;
  margin-left: -8px;
}

/* CONTENT */
.timeline-item-v2 .content {
  margin-left: 20px;
}

.level {
  margin: 0;
  color: #101114;
}

/* ========================= */
/* RESPONSIVE (STATIC FEEL) */
/* ========================= */

@media (max-width: 992px) {
  .timeline {
    padding-left: 45px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item-v2 .dot {
    left: 18px;
  }
}

@media (max-width: 768px) {
  .program-card-v2 {
    padding: 12px;
  }

  .timeline {
    padding-left: 20px;
    margin-top: 20px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item-v2 .dot {
    left: -18px;
  }

  .timeline-item-v2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item-v2 .dot {
    left: -18px;
  }
}


/* Sticky code  */
/* STICKY */
@media (min-width: 992px) {
  .sel-sticky {
    position: sticky;
    top: 100px;
  }
}

/* LEFT MENU */
.sel-levels {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.sel-item {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  position: relative;
}

.sel-item.active {
  color: #fff;
  font-weight: 600;
}

.sel-item.active::before {
  content: "•";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* RIGHT CONTENT */
.sel-content {
  min-height: 100vh;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}


/* Case Study Css Start */


.hero-case-study {
  position: relative;
  padding-bottom: 260px;
  overflow: visible;
}



.case-study-result {
  position: absolute;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  width: 92%;
  background-image: url("../images/mind/yellow-bg.png");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 5;
}


.client-profile-padding {
  padding-top: 220px;
}



.case-study-top {
  padding: 22px 28px 10px;
}

.case-study-top h3 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 6px;
  line-height: 1.2;
}

.case-study-top h3 span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.5px;
}



.case-result-box {
  padding: 24px;
  border-style: solid;
  border-color: #D4D4D4;
  border-width: 0.5px 0.25px;
  height: 100%;
  background: transparent;
}

.case-result-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2563ff;
  margin-bottom: 10px;
  line-height: 1;
}

.case-result-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  margin-bottom: 0;
}



.case-study-footer {
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.18px;
  color: #555;
  background-color: #FCF4BA;
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


@media (max-width: 991px) {

  .hero {
    padding-bottom: 480px;
  }

  .client-profile-padding {
    padding-top: 140px;
  }

  .case-study-result {
    width: 94%;
    bottom: -320px;
  }

  .case-study-top {
    padding: 20px;
  }

  .case-study-top h3 {
    font-size: 30px;
  }

  .case-study-top h3 span {
    font-size: 14px;
  }

  .case-result-box {
    padding: 20px;
  }

  .case-result-box h2 {
    font-size: 34px;
  }

  .case-result-box p {
    font-size: 15px;
    line-height: 1.5;
  }
}


@media (max-width: 767px) {

  .hero {
    padding-bottom: 540px;
  }

  .client-profile-padding {
    padding-top: 480px;
  }

  .hero h2 {
    width: 100% !important;
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .case-study-result {
    width: 94%;
    bottom: -360px;
    border-radius: 12px;
  }

  .case-study-top {
    padding: 18px;
  }

  .case-study-top h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .case-study-top h3 span {
    font-size: 12px;
    line-height: 1.4;
  }

  /* 2 Cards Per Row */

  .case-study-result .row {
    display: flex;
    flex-wrap: wrap;
  }

  .case-study-result .col-lg-3,
  .case-study-result .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
  }

  .case-result-box {
    padding: 16px;
    border-width: 0.5px;
    min-height: 160px;
  }

  .case-result-box h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .case-result-box p {
    font-size: 13px;
    line-height: 1.5;
  }

  .case-study-footer {
    font-size: 11px;
    padding: 14px 16px;
  }
}


@media (max-width: 480px) {

  .hero {
    padding-bottom: 620px;
  }

  .case-study-result {
    bottom: -440px;
  }

  .case-study-top h3 {
    font-size: 22px;
  }

  .case-result-box {
    min-height: 150px;
    padding: 14px;
  }

  .case-result-box h2 {
    font-size: 24px;
  }

  .case-result-box p {
    font-size: 12px;
  }

  .hero h2 {
    font-size: 26px;
  }
}


.cs-stats {
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.cs-stats-box {
  padding: 24px;
  text-align: center;
  border-right: 1px solid #e6e6e6;
  height: 100%;
}

.cs-stats-box h3 {
  font-size: 32px;
  font-weight: 600;
  color: #2563ff;
  margin-bottom: 10px;
}



.cs-stats-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.cs-stats-tags span {
  background: #F1F2F4;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 12px;
  color: #3C4049;
  font-weight: 500;
}



@media (max-width: 991px) {

  .cs-stats-box {
    border: 1px solid #e6e6e6;
  }

  .cs-stats .col-lg:last-child .cs-stats-box {
    border-bottom: 0;
  }

  .cs-stats-box h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {

  .cs-stats {
    border-radius: 18px;
  }

  .cs-stats-box {
    padding: 24px 16px;
  }

  .cs-stats-box h3 {
    font-size: 28px;
  }

  .cs-stats-box h6 {
    font-size: 14px;
  }

  .cs-stats-tags {
    gap: 10px;
  }

  .cs-stats-tags span {
    font-size: 12px;
    padding: 8px 14px;
  }
}


.cs-process-card {
  background: #ffffff;
  border: 1px solid #dfe3eb;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.cs-process-card.active {
  background: #E9EFFD;
  border-top: 3px solid #F1AD00;
}

.cs-process-top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.cs-process-icon {
  font-size: 16px;
  color: #2457ff;
  margin-right: 8px;
  line-height: 1;
}

.cs-process-top h5 {
  font-size: 20px;
  font-weight: 500;
  color: #2457ff;
  margin-bottom: 0;
}

.cs-process-arrow {
  flex: 1;
  height: 1px;
  background: #2457ff;
  margin-left: 12px;
  position: relative;
}

.cs-process-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #2457ff;
}

.cs-process-card h3 {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 600;
  color: #232323;
  margin-bottom: 24px;
}

.cs-process-card p {
  font-size: 16px;
  line-height: 160%;
  color: #8a8a8a;
  margin-bottom: 0;
}


@media (max-width: 991px) {


  .cs-process-card h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {


  .cs-process-card h3 {
    font-size: 24px;
  }

  .cs-process-top h5 {
    font-size: 18px;
  }

  .cs-process-card p {
    font-size: 14px;
  }
}


/* new section  */
.reflection-table-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  background: #f7f7f7;
}

/* Header */
.reflection-table-header {
  display: grid;
  grid-template-columns: 32% 36% 32%;
  background: #2f64e1;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.reflection-table-header div {
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.reflection-table-header div:last-child {
  border-right: none;
}

/* Rows */
.reflection-table-row {
  display: grid;
  grid-template-columns: 32% 36% 32%;
  border-bottom: 1px solid #dcdcdc;
}

.reflection-table-row:last-child {
  border-bottom: none;
}

.reflection-col {
  padding: 24px;
  font-size: 16px;
  line-height: 160%;
  color: #4d4d4d;
  border-right: 1px solid #dcdcdc;
  background: #fff;
}

.bg-FFFBEB {
  background: #FFFBEB;
}

.reflection-col:last-child {
  border-right: none;
}

/* Left italic text */
.italic-text {
  font-style: italic;
  color: #111;
  font-size: 18px;
  line-height: 160%
}

/* Tag */
.mini-tag {
  display: inline-block;
  margin-top: 14px;
  background: #e8e8e8;
  color: #666;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 30px;
}

/* Mobile */
@media(max-width:767px) {

  .reflection-table-header {
    display: none;
  }

  .reflection-table-row {
    grid-template-columns: 1fr;
  }

  .reflection-col {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .reflection-col:last-child {
    border-bottom: none;
  }

}




.leadership-map-card {
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 32px 34px;
  background: #fff;
  height: 100%;
}

.leadership-map-title {
  font-size: 18px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 24px;
}

/* Image */

.leadership-map-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.leadership-map-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Bottom Points */

.leadership-map-points {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px 22px;
}

.leadership-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.leadership-point:last-child {
  margin-bottom: 0;
}

.leadership-point span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1293D;
  margin-top: 8px;
  flex-shrink: 0;
}

.leadership-point p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0;
}


@media (max-width: 991px) {

  .leadership-map-card {
    margin-top: 20px;
  }

  .leadership-map-image img {
    height: 220px;
  }
}

@media (max-width: 767px) {

  .leadership-map-card {
    padding: 18px;
  }

  .leadership-map-title {
    font-size: 16px;
  }

  .leadership-map-image img {
    height: 200px;
  }

  .leadership-map-points {
    padding: 16px;
  }

  .leadership-point {
    gap: 10px;
    margin-bottom: 14px;
  }

  .leadership-point p {
    font-size: 13px;
    line-height: 1.6;
  }
}



.before-after-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.before-after-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #d9d9d9;
}

.before-box {
  width: 60%;
  background: #F9FAFB;
  padding: 24px 28px;
}

.before-box span,
.after-box span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 10px;
}

.before-box span {
  color: #8a8a8a;
}

.before-box h4,
.after-box h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}

.before-box h4 {
  color: #222;
}

.arrow-box {
  width: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f54ff;
  border-right: 1.5px solid #E5E7EB;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.after-box {
  width: 60%;
  background: #1f54ff;
  padding: 24px 28px;
}

.after-box h4 {
  color: #fff;
}



@media (max-width: 767px) {

  .before-after-row {
    flex-direction: column;
  }

  .before-box,
  .after-box,
  .arrow-box {
    width: 100%;
  }

  .arrow-box {
    padding: 10px 0;
    font-size: 18px;
  }

  .before-box,
  .after-box {
    padding: 18px 16px;
  }

  .before-box h4,
  .after-box h4 {
    font-size: 14px;
    line-height: 1.6;
  }
}


.circle {
  width: 42px;
  min-width: 42px !important;
  height: 42px;
  border-radius: 50%;
  border: 1.6px solid #731722;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;

  padding: 0;
  margin: 0;
}



.leadership-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.leadership-tab {
  border: 1px solid #232323;
  border-radius: 40px;
  padding: 12px 18px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #232323;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.leadership-tab span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #2563ff;
  position: relative;
}

.leadership-tab.active {
  border-color: #2563ff;
  color: #2563ff;
}

.leadership-tab.active span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.leadership-content-wrapper {
  background: rgba(37, 99, 235, 0.04);
  ;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 32px;
}

.leadership-content {
  display: none;
}

.leadership-content.active {
  display: block;
}

.leadership-content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.06px;
  margin-bottom: 16px;
}

.leadership-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #19191B;
}

/* Score Cards */

.leadership-score-card {
  background: #2563ff;
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  height: 100%;
}

.leadership-score-card h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.leadership-score-card span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: block;
}


.leadership-right-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 9.763px;
  border: 0.976px solid #E5E7EB;
  background: #F9FAFB;
}

.leadership-point-box {
  border: 0.976px solid #E5E7EB;
  background: rgba(255, 254, 222, 0.50);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.leadership-point-box span {
  color: #2563ff;
  font-family: 'FontAwesome';
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}

.leadership-point-box p strong {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #111827;
}

.leadership-point-box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #6B7280;
}



@media (max-width: 991px) {

  .leadership-right-box {
    margin-top: 24px;
  }

  .leadership-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {

  .leadership-tabs {
    gap: 10px;
  }

  .leadership-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .leadership-content-wrapper {
    padding: 18px;
  }

  .leadership-content h3 {
    font-size: 24px;
  }

  .leadership-content p {
    font-size: 14px;
  }

  .leadership-score-card h2 {
    font-size: 24px;
  }

  .leadership-point-box {
    padding: 18px;
  }

  .leadership-point-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}



/* =========================================
   Insight Tabs Section
========================================= */

.insight-tabs-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

/* Tab Button */

.insight-tab {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  transition: 0.3s ease;
  cursor: pointer;
}

.insight-tab:last-child {
  border-bottom: 0;
}

/* Radio */

.insight-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  margin-top: 4px;
  position: relative;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.insight-tab.active .insight-radio {
  border-color: #2563ff;
}

.insight-tab.active .insight-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Heading */

.insight-tab h5 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: #232323;
  transition: 0.3s ease;
  line-height: 1.3;
}

.insight-tab.active h5 {
  color: #2563ff;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Paragraph Hidden By Default */

.insight-tab p {
  display: none;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
  max-width: 95%;
}

/* Show only active paragraph */

.insight-tab.active p {
  display: block;
}

/* =========================================
   Right Content
========================================= */

.insight-content {
  display: none;
}

.insight-content.active {
  display: block;
}

/* Main Card */

.insight-card {
  background-image: url("../images/mind/yellow-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 70px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* White Inner Card */

.insight-card::before {
  content: "";
  position: absolute;
  inset: 32px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #9d9d9d;
  z-index: 0;
}

.insight-card>* {
  position: relative;
  z-index: 2;
}

/* Heading */

.insight-card h3 {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 500;
  color: #232323;
  margin-bottom: 32px;
  padding: 10px 24px 0;
  max-width: 90%;
}

/* Description */

.insight-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #404040;
  padding: 0 24px 10px;
  margin-bottom: 0;
  max-width: 92%;
}

/* =========================================
   Progress Bars
========================================= */

.insight-progress-group {
  padding: 0 24px;
  margin-bottom: 28px;
}

.insight-progress-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.insight-progress-item:last-child {
  margin-bottom: 0;
}

.insight-progress-item span {
  width: 42px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.insight-progress {
  flex: 1;
  height: 6px;
  background: #e6e6e6;
  border-radius: 20px;
  overflow: hidden;
}

.insight-progress-fill {
  height: 100%;
  background: #2563ff;
  border-radius: 20px;
}

.insight-progress-item strong {
  width: 55px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #232323;
}

/* =========================================
   Large Desktop
========================================= */

@media (max-width: 1399px) {

  .insight-card h3 {
    font-size: 28px;
    max-width: 100%;
  }
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

  .insight-content-wrapper {
    margin-top: 40px;
  }

  .insight-tab {
    padding: 20px 0;
  }

  .insight-tab h5 {
    font-size: 20px;
  }

  .insight-tab p {
    font-size: 13px;
  }

  .insight-card {
    padding: 36px 24px;
  }

  .insight-card::before {
    inset: 18px;
  }

  .insight-card h3 {
    font-size: 24px;
    padding: 10px 18px 0;
    margin-bottom: 24px;
  }

  .insight-card p {
    padding: 0 18px 18px;
  }

  .insight-progress-group {
    padding: 0 18px;
  }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

  .insight-tabs-wrapper {
    margin-bottom: 30px;
  }

  .insight-tab {
    padding: 18px 0;
    gap: 12px;
  }

  .insight-radio {
    width: 20px;
    height: 20px;
  }

  .insight-tab.active .insight-radio::after {
    width: 10px;
    height: 10px;
  }

  .insight-tab h5 {
    font-size: 17px;
    line-height: 1.4;
  }

  .insight-tab.active h5 {
    margin-bottom: 8px;
  }

  .insight-tab p {
    font-size: 12px;
    line-height: 1.7;
    max-width: 100%;
  }

  .insight-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .insight-card::before {
    inset: 12px;
    border-radius: 12px;
  }

  .insight-card h3 {
    font-size: 20px;
    line-height: 1.45;
    padding: 8px 14px 0;
    margin-bottom: 22px;
  }

  .insight-card p {
    padding: 0 14px 14px;
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
  }

  .insight-progress-group {
    padding: 0 14px;
    margin-bottom: 20px;
  }

  .insight-progress-item {
    gap: 10px;
    margin-bottom: 14px;
  }

  .insight-progress-item span {
    width: 34px;
    font-size: 12px;
  }

  .insight-progress-item strong {
    width: 42px;
    font-size: 12px;
  }

  .insight-progress {
    height: 5px;
  }
}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

  .insight-tab h5 {
    font-size: 16px;
  }

  .insight-tab p {
    font-size: 11px;
  }

  .insight-card h3 {
    font-size: 18px;
  }

  .insight-card p {
    font-size: 12px;
  }

  .insight-progress-item span,
  .insight-progress-item strong {
    font-size: 11px;
  }
}


.case-study-card {
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  background: #FFF8D9;
  height: 100%;
  transition: 0.3s ease;
}

.case-study-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.case-study-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0));
  z-index: 1;
}


/* Floating Stat */
.cs-floating-stat {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 8px;
  /* max-width: 220px; */
  z-index: 2;
}

.cs-floating-stat h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
  color: #fff;
}

.cs-floating-stat p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  color: #fff;
}


/* Company */
.company-title {
  display: inline-block;
}

.company-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563EB;
}

.company-title img {
  width: 110px;
  object-fit: contain;
  height: 60px;
}

/* Tags */
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tags span {
  background: #fff;
  color: #2563EB;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

/* Stats */
.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.case-study-stat-box {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}

.case-study-stat-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 8px;
  line-height: 1.2;
}

.case-study-stat-box p {
  font-size: 12px;
  color: #5E6573;
  margin: 0;
  line-height: 1.5;
}

/* CTA */
.read-case-study {
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  transition: 0.3s ease;
}

.case-study-card:hover .read-case-study {
  letter-spacing: 0.5px;
}

/* Mobile */
@media(max-width: 767px) {

  .case-study-stats {
    grid-template-columns: 1fr;
  }

  .cs-floating-stat {
    max-width: 180px;
    padding: 14px;
  }

  .cs-floating-stat h4 {
    font-size: 24px;
  }
}


/* Case Study Css End */