/* ─── vision-mission.css ─── */
/* Kolhapur Shikshak Co-op. Bank — Vision & Mission Page */

/* PAGE BANNER */
.vm-page-banner {
  background: linear-gradient(135deg, var(--sky-ddk) 0%, var(--sky-dk) 60%, var(--sky) 100%);
  padding: 52px 24px 48px;
  position: relative; overflow: hidden;
}
.vm-page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.vm-banner-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.vm-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.vm-breadcrumb a {
  font-size: 13px; color: rgba(255,255,255,0.75);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.vm-breadcrumb a:hover { color: var(--white); }
.vm-breadcrumb a i { font-size: 11px; }
.vm-bc-sep { color: rgba(255,255,255,0.4); font-size: 10px; }
.vm-breadcrumb span[aria-current] { font-size: 13px; color: rgba(255,255,255,0.55); }

.vm-banner-title {
  font-family: 'Lora', serif;
  font-size: clamp(10px, 5vw, 25px);
  font-weight: 300; color: var(--white);
  line-height: 1.00; margin-bottom: 10px;
}
.vm-banner-sub {
  font-size: 15px; color: rgba(255,255,255,0.72);
  font-family: 'Source Sans 3', sans-serif;
}

/* Decorative book icon */
.vm-banner-deco {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 160px; color: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* ─── SECTION LAYOUT ─── */
.vm-section { padding: 72px 24px; }
.vm-vision-section  { background: var(--white); }
.vm-mission-section { background: var(--off-wh); }

.vm-section-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 80px 1fr;
  gap: 48px; align-items: start;
}
.vm-section-inner-rev {
  grid-template-columns: 1fr 10px;
}

/* Side label */
.vm-side-label {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding-top: 8px;
}
.vm-side-label-right { align-items: center; }
.vm-side-num {
  font-family: 'Lora', serif;
  font-size: 38px; font-weight: 700;
  color: var(--sky-lt); line-height: 1;
  -webkit-text-stroke: 2px var(--sky-mid);
}
.vm-side-word {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sky-mid);
}
.vm-side-line {
  flex: 1; width: 2px;
  background: linear-gradient(to bottom, var(--sky-mid), transparent);
  min-height: 60px; border-radius: 2px;
}

/* Content block */
.vm-content-block { display: flex; flex-direction: column; gap: 0; }

/* Icon circle */
.vm-icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-bottom: 10px;
  position: relative;
}
.vm-icon-circle::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px dashed var(--sky-mid);
  opacity: .5;
}
.vision-circle  { background: var(--sky-lt); color: var(--sky-ddk); }
.mission-circle { background: linear-gradient(135deg, var(--sky-ddk), var(--sky-dk)); color: var(--white); }

/* Eyebrow */
.vm-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--sky-dk); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}
.vm-eyebrow i { font-size: 11px; }

/* Heading */
.vm-heading {
  font-family: 'Lora', serif;
  font-size: clamp(10px, 3.5vw, 15px);
  font-weight: 350; color: var(--sky-ddk);
  line-height: 1.00; margin-bottom: 28px;
}
.vm-heading-accent { color: var(--sky-dk); }

/* ─── VISION QUOTE BLOCK ─── */
.vm-quote-block {
  box-shadow: 0 4px 16px rgba(14,110,154,.08);  
  position: relative;
  background: var(--sky-lt);
  border-left: 3px solid var(--sky-dk);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px 18px 26px;
  margin-bottom: 24px;
}
.vm-quote-mark {
  font-family: 'Lora', serif;
  font-size: 50px; line-height: .7;
  color: var(--sky-mid); opacity: .5;
  position: absolute; top: 10px; left: 12px;
  font-weight: 700;
}
.vm-quote-mark-close {
  top: auto; left: auto;
  bottom: -10px; right: 16px;
}
.vm-quote-text {
  font-family: 'Tiro Devanagari Marathi', serif;
  font-size: 16px; line-height: 1.6;
  color: var(--sky-ddk); font-style: normal;
  font-weight: 400;
}

/* Vision pillars */
.vm-pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.vm-pillar {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px; padding: 18px 14px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.vm-pillar:hover {
  border-color: var(--sky-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14,110,154,.10);
}
.vm-pillar-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sky-lt); color: var(--sky-ddk);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin: 0 auto 10px;
}
.vm-pillar-title {
  font-size: 14px; font-weight: 700;
  color: var(--sky-ddk); margin-bottom: 4px;
  font-family: 'Tiro Devanagari Marathi', serif;
}
.vm-pillar-desc {
  font-size: 12px; color: var(--gray-400); line-height: 1.5;
}

/* ─── MISSION LIST ─── */
.vm-mission-intro {
  font-size: 16px; color: var(--gray-700);
  line-height: 1.7; margin-bottom: 28px;
}
.vm-mission-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 0;
}
.vm-mission-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px; align-items: start;
  animation: fadeSlideUp .5s ease both;
}
.vm-mission-item:nth-child(1) { animation-delay: .1s; }
.vm-mission-item:nth-child(2) { animation-delay: .25s; }
.vm-mission-item:nth-child(3) { animation-delay: .4s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vm-mission-num {
  font-family: 'Lora', serif;
  font-size: 11px; font-weight: 700;
  color: var(--sky-dk); letter-spacing: .08em;
  padding-top: 18px;
  opacity: .7;
}
.vm-mission-body {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px; padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.vm-mission-body::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--sky-dk);
  border-radius: 4px 0 0 4px;
}
.vm-mission-body:hover {
  border-color: var(--sky-mid);
  box-shadow: 0 10px 28px rgba(14,110,154,.12);
  transform: translateY(-2px);
}
.vm-mission-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--sky-lt); color: var(--sky-ddk);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.vm-mission-title {
  font-size: 16px; font-weight: 700; color: var(--sky-ddk);
  margin-bottom: 6px;
  font-family: 'Tiro Devanagari Marathi', serif;
}
.vm-mission-desc {
  font-size: 14px; color: var(--gray-700); line-height: 1.7;
}

/* ─── DIVIDER ─── */
.vm-divider {
  display: flex; align-items: center; gap: 0;
  padding: 0 24px; max-width: 1000px; margin: 0 auto;
}
.vm-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--sky-mid), transparent);
}
.vm-divider-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sky-lt); border: 2px solid var(--sky-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-dk); font-size: 18px;
  margin: 0 16px;
}

/* ─── VALUES STRIP ─── */
.vm-values-strip {
  background: linear-gradient(135deg, var(--sky-ddk) 0%, var(--sky-dk) 100%);
  padding: 60px 24px;
}
.vm-values-inner { max-width: 1000px; margin: 0 auto; }
.vm-values-header { margin-bottom: 36px; }

.vm-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.vm-value-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(102,205,245,.25);
  border-radius: 14px; padding: 24px 16px;
  text-align: center;
  transition: background .2s, transform .2s;
}
.vm-value-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.vm-value-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--sky);
  margin: 0 auto 14px;
}
.vm-value-title {
  font-family: 'Tiro Devanagari Marathi', serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.vm-value-en {
  font-size: 11px; font-weight: 700;
  color: var(--sky); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 8px;
}
.vm-value-desc {
  font-size: 12.5px; color: rgba(255,255,255,.65); line-height: 1.5;
}

/* ─── TAGLINE SECTION ─── */
.vm-tagline-section {
  background: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.vm-tagline-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.vm-tagline-quote {
  font-family: 'Lora', serif;
  font-size: 80px; line-height: .6;
  color: var(--sky-mid); opacity: .4;
  font-weight: 700;
}
.vm-tagline-text {
  font-family: 'Tiro Devanagari Marathi', serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700; color: var(--sky-ddk);
  line-height: 1.4;
}
.vm-tagline-sub {
  font-size: 15px; color: var(--gray-400); line-height: 1.6;
}
.vm-tagline-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-ddk); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}
.vm-tagline-btn:hover { background: var(--sky-dk); transform: translateY(-1px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .vm-values-grid { grid-template-columns: repeat(3, 1fr); }
  .vm-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vm-page-banner { padding: 40px 16px 36px; }
  .vm-banner-deco { display: none; }
  .vm-banner-title { font-size: 28px; }

  .vm-section { padding: 48px 16px; }

  .vm-section-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vm-section-inner-rev {
    grid-template-columns: 1fr;
  }
  /* Hide vertical side labels on mobile */
  .vm-side-label, .vm-side-label-right { display: none; }

  .vm-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .vm-mission-item { grid-template-columns: 1fr; gap: 8px; }
  .vm-mission-num { padding-top: 0; font-size: 10px; }

  .vm-values-strip { padding: 48px 16px; }
  .vm-values-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vm-value-card { padding: 18px 12px; }
  .vm-value-icon { width: 44px; height: 44px; font-size: 18px; }
  .vm-value-title { font-size: 16px; }

  .vm-tagline-section { padding: 52px 16px; }
  .vm-tagline-quote { font-size: 60px; }

  .vm-quote-text { font-size: 16px; }
  .vm-heading { font-size: 24px; }

  .vm-divider { padding: 0 16px; }
}

@media (max-width: 480px) {
  .vm-values-grid { grid-template-columns: 1fr 1fr; }
  .vm-pillars-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vm-pillar { padding: 14px 10px; }
  .vm-mission-body { padding: 16px 16px 16px 20px; }
  .vm-banner-title { font-size: 24px; }
  .vm-tagline-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
     BOARD OF DIRECTORS - CLEAN & RESPONSIVE
══════════════════════════════════════════════════ */

.board-directors-section {
  padding: 80px 0 40px;
  background: #f8f9fa;
}

/* TEAM MEMBER BASE */
.team-member {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE BOX */
.team-member .image-box {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.team-member .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-member:hover .image-box img {
  transform: scale(1.05);
}

/* TEAM INFO */
.team-info {
  padding: 20px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h6 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.team-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* SPECIAL STYLES */
.featured-founder {
  border: 3px solid #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}

.featured-founder:hover {
  border-color: #1d4ed8;
}

.priority-leader {
  border-left: 4px solid #10b981;
}

.priority-leader:hover {
  border-left-color: #059669;
}

/* RESPONSIVE GRID */
@media (max-width: 1200px) {
  .col-xl-2 { flex: 0 0 25%; max-width: 25%; }
}

@media (max-width: 992px) {
  .col-lg-3 { flex: 0 0 33.333%; max-width: 33.333%; }
  .board-directors-section { padding: 60px 0 30px; }
}

@media (max-width: 768px) {
  .col-md-4 { flex: 0 0 50%; max-width: 50%; }
  .team-member .image-box { height: 180px; }
  .team-info { padding: 16px 12px; }
  .team-info h6 { font-size: 14px; }
}

@media (max-width: 480px) {
  .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
  .team-member .image-box { height: 200px; }
  .board-directors-section { padding: 40px 0 20px; }
}

/* PERFECT MOBILE CARDS */
@media (max-width: 576px) {
  .team-member {
    margin-bottom: 20px;
  }
  
  .featured-founder .image-box {
    height: 240px;
  }
}