

/* CARD */
.virtual-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

/* TITLE */
.section-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 15px;
  border-left: 5px solid var(--accent-red);
  padding-left: 10px;
}

/* SUB TITLE */
.sub-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 20px;
}

/* TEXT */
.virtual-card p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ================= GALLERY ================= */
.virtual-gallery {
  text-align: center;
}

.gallery-title {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 25px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.gallery-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* HOVER */
.gallery-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
}

/* ZOOM */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .virtual-card {
    padding: 20px;
  }

}