/* Cyber Agency - Mission, Vision & Values Styling */
.cyber-mission-vision {
  color: #ffffff;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.mv-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Background Glows */
.mv-glow-purple {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 350px;
  height: 350px;
  filter: blur(130px);
  border-radius: 50%;
  pointer-events: none;
}

.mv-glow-cyan {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  filter: blur(130px);
  border-radius: 50%;
  pointer-events: none;
}

/* Mission & Vision Top Grid */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.mv-card {
  background: rgba(15, 11, 26, 0.85);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px -10px rgba(147, 51, 234, 0.3);
}

.vision-card {
  border-color: rgba(56, 189, 248, 0.3);
}

.vision-card:hover {
  box-shadow: 0 12px 35px -10px rgba(56, 189, 248, 0.3);
}

/* Header Badges inside Cards */
.mv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.mv-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon-badge i {
  color: #c084fc;
  font-size: 1.25rem;
}

.cyan-badge {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}

.cyan-badge i {
  color: #38bdf8;
}

.mv-tag {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c084fc;
}

.cyan-tag {
  color: #38bdf8;
}

.mv-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.mv-description {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

/* Core Values Section */
.values-wrapper {
  padding-top: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(15, 11, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.value-card:hover {
  background: rgba(15, 11, 26, 0.9);
  border-color: #38bdf8;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px -8px rgba(56, 189, 248, 0.25);
}

.value-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon-box i {
  color: #38bdf8;
  font-size: 1.15rem;
}

.value-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.value-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }

  .cyber-mission-vision {
    color: #ffffff;
    padding: 30px 20px;
  }

  .mv-card {
      padding:14px;
  }
  .mv-icon-badge {
      width: 35px;
      height: 36px;
  }
  .mv-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 10px 0;
  }
  .mv-card-header {
      margin-bottom:10px;
  }
  .values-wrapper {
    padding-top: 0px;
  }
  .center-header {
        margin-bottom: 20px;
  }

  .value-card {
      padding: 12px 16px;
      min-width:190px;
  }
  .values-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
}