/* Vision & Mission Styles */
.vm-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Optional background decorations removed per request */

/* Header Watermark and 3D Folded Paper Effect */
.vm-header-v2 {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  padding-bottom: 80px;
  background: 
    /* Fold 1 (Top Left to Bottom Right) */
    linear-gradient(115deg, transparent 40%, rgba(0, 0, 0, 0.08) 40.5%, rgba(0, 0, 0, 0) 45%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    /* Fold 2 (Bottom Left to Top Right) */
    linear-gradient(-60deg, transparent 50%, rgba(0, 0, 0, 0.08) 50.5%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(-60deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    /* Fold 3 (Steep Vertical Fold) */
    linear-gradient(25deg, transparent 65%, rgba(0, 0, 0, 0.06) 65.5%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(25deg, rgba(255, 255, 255, 0.04) 0%, transparent 65%),
    /* Base Color */
    var(--primary-blue) !important;
}

.vm-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 1000px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vm-header-v2 .container {
  position: relative;
  z-index: 1;
}

.vm-section .container {
  position: relative;
  z-index: 1;
}

/* Utilities */
.align-items-stretch {
  align-items: stretch;
}
.mb-50 {
  margin-bottom: 50px;
}
.no-margin {
  margin-bottom: 0 !important;
}

/* Vision Box Typographic */
.vision-box.typographic {
  background: transparent;
  color: var(--primary-blue);
  padding: 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-box.typographic::before {
  content: 'VISION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: rgba(30, 58, 138, 0.04);
  font-weight: 900;
  letter-spacing: 0.5rem;
  z-index: 0;
  pointer-events: none;
}

.vision-box.typographic h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.vision-box.typographic h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent-yellow);
  margin: 15px auto 0;
  border-radius: 2px;
}

.vision-box.typographic p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #1e293b;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* Core Box (Mission, Goals, Targets) */
.core-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.core-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.box-title {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
  font-weight: 700;
}

.box-title i {
  color: var(--accent-yellow);
  background: #f8fafc;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Lists */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #475569;
  font-size: 1.05rem;
  transition: color 0.3s;
}
.custom-list li:hover {
  color: #1e293b;
}

.custom-list li::before {
  content: '\f058'; /* FontAwesome Check Circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.target-box {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}
.target-box .box-title i {
  color: var(--primary-blue);
  background: rgba(250, 204, 21, 0.2);
}
.target-box .custom-list li::before {
  color: var(--accent-yellow);
}

/* Strategy Section */
.strategy-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #e2e8f0;
}

.section-heading {
  text-align: center;
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.strategy-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(100, 116, 139, 0.15);
}

.strategy-card h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.small-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 30px;
}
.small-list li::before {
  font-size: 1rem;
  top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .vision-box {
    padding: 40px 20px;
  }
  .vision-box h2 {
    font-size: 2rem;
  }
  .vision-box p {
    font-size: 1.1rem;
  }
  .core-box {
    padding: 30px 20px;
  }
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}
