/* ====================Leadership==================== */
.leadership-modern {
  background: radial-gradient(circle at top, #fbf8ef, #f6f1dd);
  padding: 40px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.lm-container {
  max-width: 1200px;
  margin: auto;
}

.lm-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.lm-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.5px;
}

.lm-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f5f5f;
  margin-top: 16px;
}

.lm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.lm-card {
  background: linear-gradient(145deg, #ffffff, #fff8e6);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  min-height: 300px; /* keeps all cards equal */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.lm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,165,0,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lm-card:hover::before {
  opacity: 1;
}

.lm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.lm-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  border-radius: 50%;
  color: #e67e22;

  background: linear-gradient(135deg, #fff2d6, #ffe2b8);
  box-shadow:
    0 10px 25px rgba(230, 126, 34, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Variants */
.lm-icon.heart {
  color: #e74c3c;
  background: linear-gradient(135deg, #ffe3e3, #ffd1d1);
  box-shadow:
    0 10px 25px rgba(231, 76, 60, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.lm-icon.globe {
  background: linear-gradient(135deg, #e8f4ff, #d6ebff);
  color: #3498db;
}

/* .lm-icon.square {
  width: 30px;
  height: 30px;
  border: 3px solid #e67e22;
  background: transparent;
  box-shadow: none;
} */

.lm-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

.lm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

.lm-quote {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  font-weight: 600;
  color: #d35400;
  font-size: 14px;
}
.lm-card h3 {
  min-height: 52px; /* equal heading alignment */
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-card p {
  min-height: 40px; /* equal text block height */
}

.lm-quote {
  margin-top: auto; /* pushes quote to bottom */
  width: 100%;
}


.lm-quote small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}


/* ====================Our Core Focus Areas==================== */

.focus-section {
  /* background: #ffffff; */
  /* background:  #f6f1dd; */
  background: linear-gradient(180deg, #f8f6ef, #fdf9e8);
  padding: 40px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.focus-container {
  max-width: 1200px;
  margin: auto;
}

.focus-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #1f2937;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 60px;
}

.focus-title::after {
  content: "";
  width: 60%;
  max-width: 400px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #e67e22);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 10px;
}


.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  gap: 28px;
}

.focus-card {
  background: #fefbe8;
  border-radius: 14px;
  padding: 32px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.focus-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.focus-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e67e22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.focus-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.focus-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #e67e22;
  background: #fff2d9;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 14px;
}

.focus-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 18px;
}

.focus-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.focus-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #374151;
}

.focus-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

@media (min-width: 1400px) {

  .focus-container {
    max-width: 1300px;
  }

  .focus-title {
    font-size: 42px;
  }

}

@media (max-width: 1399px) {

  .focus-title {
    font-size: 36px;
  }

  .focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

}

@media (max-width: 1399px) {

  .focus-title {
    font-size: 36px;
  }

  .focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

}

@media (max-width: 1199px) {

  .focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

}

@media (max-width: 991px) {

  .focus-title {
    font-size: 30px;
  }

  .focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .focus-card {
    padding: 28px 24px;
  }

}

@media (max-width: 767px) {

  .focus-section {
    padding: 50px 20px;
  }

  .focus-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    padding: 24px 20px;
  }

}

@media (max-width: 480px) {

  .focus-title {
    font-size: 20px;
  }

  .focus-card {
    padding: 20px 16px;
  }

  .focus-card h3 {
    font-size: 16px;
  }

  .focus-desc,
  .focus-card li {
    font-size: 13px;
  }

}

/* =====================Leadership Programs=================  */

.programs-clean {
  /* background: #fdf9e8; */
  background: linear-gradient(180deg, #f8f6ef, #fdf9e8);
  padding: 80px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.pc-container {
  max-width: 1200px;
  margin: auto;
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.pc-card {
  background: #fffdf0;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pc-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff3d6;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.pc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.pc-badge {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 16px;
  font-weight: 600;
}

.pc-badge.red { background: #fee2e2; color: #b91c1c; }
.pc-badge.yellow { background: #fff7cc; color: #ca8a04; }
.pc-badge.purple { background: #ede9fe; color: #7c3aed; }
.pc-badge.blue { background: #e0f2fe; color: #2563eb; }

.pc-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 26px;
}

.pc-card hr {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin-bottom: 24px;
}

.pc-meta {
  font-size: 13px;
  margin-bottom: 24px;
}

.pc-meta .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pill {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.pill.orange { background: #fff2d9; color: #d97706; }
.pill.green { background: #dcfce7; color: #15803d; }
.pill.red { background: #fee2e2; color: #b91c1c; }

.pc-highlights {
  text-align: left;
  font-size: 13px;
}

.pc-highlights ul {
  margin-top: 6px;
  padding-left: 16px;
}

.pc-highlights li {
  margin-bottom: 6px;
  color: #4b5563;
}

/* =====================Impact Grid====================  */

.impact-section {
  background: linear-gradient(180deg, #f8f6ef, #fdf9e8);
  padding: 40px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.impact-container {
  max-width: 1200px;
  margin: auto;
}

.impact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.impact-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.impact-header p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 3fr));
  gap: 28px;
}

/* Card */
.impact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.08);
  border-color: #f59e0b;
}

/* Icon */
.impact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4d6, #ffe7b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #d97706;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.25);
}

/* Small Label */
.impact-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Title */
.impact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Description */
.impact-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Tag */
.impact-tag {
  display: inline-block;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff3d6;
  color: #b45309;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==============join the leadership============= */
.revolution-section {
  /* background: linear-gradient(135deg, #fdf9e8, #f6f1dd); */
  background: linear-gradient(180deg, #f8f6ef, #fdf9e8);
  padding: 40px 20px 60px;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
}

.revolution-container {
  max-width: 850px;
  margin: auto;
}

.revolution-symbol {
  font-size: 48px;
  color: #d97706;
  margin-bottom: 20px;
}

.revolution-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.revolution-text {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Buttons */
.revolution-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  background: #f59e0b;
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #f59e0b;
  color: #d97706;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff3d6;
  transform: translateY(-3px);
}

/* Motto */
.revolution-motto {
  margin-top: 20px;
}

.sanskrit {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 6px;
}

.translation {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}
