:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.virtual-tour-modern {
  background: var(--bg-light);
  padding: 60px 0;
}

/* CARD */
.virtual-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT */
.virtual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
}

/* TITLE */
.virtual-title {
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
}

/* IMAGE */
.virtual-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* IMAGE STYLE */
.virtual-image img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.virtual-image:hover img {
  transform: scale(1.05);
}

/* OPTIONAL OVERLAY EFFECT */
.virtual-image::after {
  content: "View Virtual Tour";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 30px;
  opacity: 0;
  transition: 0.3s;
}

.virtual-image:hover::after {
  opacity: 1;
  bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .virtual-card {
    padding: 15px;
  }

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