
/* SECTION */
.vm-section {
  padding: 15px 20px;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
  position: relative;
}

/* TITLE */
.vm-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* DESCRIPTION */
.vm-desc {
  max-width: 850px;
  margin: 0 auto 30px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 5px solid var(--primary-blue);
  border-radius: 10px;
  font-style: italic; /* NEW */
  line-height: 1.8;
  color: #444;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.vm-desc::before {
  content: "“";
  font-size: 40px;
  color: var(--accent-red);
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
}

/* GRID */
.vm-grid {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CENTER LINE */
.vm-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-blue), var(--accent-red));
  transform: translateX(-50%);
}

/* ROW */
.vm-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

/* LEFT & RIGHT */
.vm-box {
  width: 45%;
}

/* CARD */
.vm-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border-top: 4px solid var(--primary-blue); /* NEW */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-top: 4px solid var(--accent-red); /* NEW */
}

/* DOT */
.vm-dot {
  width: 18px;
  height: 18px;
  background: var(--accent-red);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  border: 4px solid #fff;
}

/* LIST */
.vm-card ul {
  padding-left: 0;
  list-style: none;
}

.vm-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

/* ICON BULLET */
.vm-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-size: 14px;
}

/* IMAGE */
.vm-image {
  text-align: center;
  margin: 60px 0;
}

.vm-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.vm-image img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 768px){
  .vm-grid::before {
    display: none;
  }

  .vm-row {
    flex-direction: column;
    gap: 20px;
  }

  .vm-box {
    width: 100%;
  }

  .vm-dot {
    display: none;
  }
}