/* Mission & Vision Statements */

.mission-vision-values {
  padding: 100px 0;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin-top: 20px;
}

.mvv-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.mvv-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.mvv-card p {
  color: var(--body-color);
  margin-bottom: 0;
  line-height: 1.7;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.value-item {
  padding-left: 20px;
  border-left: 2px solid var(--primary);
}

.value-title {
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.value-item p {
  font-size: 0.9rem;
  margin: 0;
}
/* Mission & Vision Statement Ends */


/* Pricing Section */

.pricing-section {
  padding: 80px 0;
}

.mvv-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-list .pricing-item {
  margin-bottom: 20px;
}

.pricing-item .service-title {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.pricing-item .price {
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-item .detail {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #0d6efd;
  margin-bottom: 30px;
}

.btn {
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}
/* Pricing Ends */