/* ================= SECTION ================= */
.vc-section {
  padding: 15px;
  overflow: hidden; /* 🔥 prevent overflow */
}

/* TITLE */
.vc-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

/* ================= CONTAINER ================= */
.vc-container {
  display: grid;
  grid-template-columns: minmax(250px, 350px) 1fr; /* 🔥 FIXED */
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
  align-items: start;
  box-sizing: border-box;
}

/* HEADER BOX */
.vc-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 20px !important;
}

/* ================= LEFT SIDE ================= */
.vc-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

/* ================= QUOTE CARD ================= */
.vc-quote-card {
  background: rgba(0, 117, 190, 0.08);
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-red);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-style: italic;
}

.vc-quote-card p {
  line-height: 1.8;
  color: #444;
}

.vc-quote-card h4 {
  margin-top: 15px;
  color: var(--primary-blue);
}

/* ================= RIGHT SIDE ================= */
.vc-right {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* SUBTITLE */
.vc-subtitle {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

/* CONTENT */
.vc-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}

/* ================= TABLET FIX (IMPORTANT) ================= */
@media (max-width: 992px) {
  .vc-container {
    grid-template-columns: 1fr; /* 🔥 FIX FOR IPAD */
  }

  .vc-title {
    font-size: 28px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .vc-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vc-title {
    font-size: 24px;
  }

  .vc-right {
    text-align: center;
    padding: 20px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .vc-title {
    font-size: 20px;
  }

  .vc-section {
    padding: 10px;
  }
}

/* ================= GLOBAL FIX ================= */
body {
  overflow-x: hidden; /* 🔥 removes right gap globally */
}