/* ==========================================================================
   VMS — Theme Layer (sits on top of Bootstrap 5)
   Variables map 1:1 to a future WordPress theme.json palette/typography
   so this can be lifted into a block theme with minimal translation.
   ========================================================================== */

:root {
  /* Brand palette — derived from the existing VMS crest (heritage maroon + gold) */
  --vms-maroon:        #6E2A36;
  --vms-maroon-dark:   #47161F;
  --vms-maroon-tint:   #F4E9EB;
  --vms-gold:          #C08A34;
  --vms-gold-light:    #E7C892;
  --vms-ink:           #241B18;
  --vms-ink-soft:      #5B4E4A;
  --vms-cream:         #FBF6EE;
  --vms-cream-deep:    #F3EADA;
  --vms-white:         #FFFFFF;
  --vms-line:          #E7DDD0;

  --vms-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --vms-font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --vms-radius: 14px;
  --vms-shadow: 0 20px 45px -20px rgba(36, 27, 24, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--vms-font-body);
  color: var(--vms-ink);
  background: var(--vms-white);
}

h1, h2, h3, h4, .vms-display {
  font-family: var(--vms-font-display);
  font-weight: 600;
  color: var(--vms-maroon-dark);
  letter-spacing: -0.01em;
}

a { color: var(--vms-maroon); }
a:hover { color: var(--vms-gold); }

.vms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vms-gold);
}
.vms-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--vms-gold);
  display: inline-block;
}

.vms-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.vms-btn-primary {
  background: var(--vms-maroon);
  color: var(--vms-white);
}
.vms-btn-primary:hover { background: var(--vms-maroon-dark); color: var(--vms-white); transform: translateY(-2px); }
.vms-btn-gold {
  background: var(--vms-gold);
  color: var(--vms-white);
}
.vms-btn-gold:hover { background: #a5761f; color: var(--vms-white); transform: translateY(-2px); }
.vms-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--vms-white);
}
.vms-btn-outline:hover { background: rgba(255,255,255,.12); color: var(--vms-white); }
.vms-btn-outline-maroon {
  background: transparent;
  border-color: var(--vms-maroon);
  color: var(--vms-maroon);
}
.vms-btn-outline-maroon:hover { background: var(--vms-maroon); color: var(--vms-white); }

/* ---------- Utility bar ---------- */
.vms-utility-bar {
  background: var(--vms-maroon-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.vms-utility-bar a { color: rgba(255,255,255,.85); text-decoration: none; }
.vms-utility-bar a:hover { color: var(--vms-gold-light); }
.vms-utility-bar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }
.vms-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff; font-size: .8rem;
}
.vms-social a:hover { background: var(--vms-gold); }

/* ---------- Header / nav ---------- */
.vms-header {
  background: var(--vms-white);
  border-bottom: 1px solid var(--vms-line);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .2s ease;
}
.vms-header.is-stuck { box-shadow: 0 8px 24px -16px rgba(36,27,24,.35); }
.vms-logo img { height: 46px; width: auto; }
.vms-nav .nav-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--vms-ink);
  padding: .5rem .65rem !important;
  border-radius: 8px;
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1300px) {
  .vms-nav .nav-link { padding: .5rem .45rem !important; font-size: .85rem; }
}
.vms-nav .nav-link:hover,
.vms-nav .nav-link:focus { color: var(--vms-maroon); }
.vms-nav .nav-item.active .nav-link { color: var(--vms-maroon); }
.vms-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--vms-shadow);
  padding: .5rem;
}
.vms-nav .dropdown-item {
  border-radius: 8px;
  padding: .55rem .9rem;
  font-weight: 500;
}
.vms-nav .dropdown-item:hover { background: var(--vms-maroon-tint); color: var(--vms-maroon-dark); }

/* ---------- Ticker ---------- */
.vms-ticker {
  background: var(--vms-gold);
  color: var(--vms-maroon-dark);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: .88rem;
}
.vms-ticker__track {
  display: inline-block;
  padding-left: 100%;
  animation: vms-scroll 32s linear infinite;
}
.vms-ticker:hover .vms-ticker__track { animation-play-state: paused; }
@keyframes vms-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.vms-ticker__track span { margin-right: 3.5rem; }

/* ---------- Hero ---------- */
.vms-hero {
  position: relative;
  background: linear-gradient(120deg, var(--vms-maroon-dark) 0%, var(--vms-maroon) 60%, #7d3542 100%);
  overflow: hidden;
  padding: 5.5rem 0 6rem;
}
.vms-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,.07), transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(224,178,110,.18), transparent 45%);
}
.vms-hero__content { position: relative; z-index: 2; }
.vms-hero h1 { color: var(--vms-white); font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.12; }
.vms-hero p.lead { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 46ch; }
.vms-hero .vms-eyebrow { color: var(--vms-gold-light); }
.vms-hero .vms-eyebrow::before { background: var(--vms-gold-light); }

.vms-hero__frame {
  position: relative;
  box-shadow: var(--vms-shadow);
}
.vms-hero__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,.12);
}
.vms-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vms-hero__badge {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  background: var(--vms-white);
  color: var(--vms-ink);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: var(--vms-shadow);
  min-width: 210px;
}
.vms-hero__badge strong { display: block; font-family: var(--vms-font-display); font-size: 1.6rem; color: var(--vms-maroon); }

/* ---------- Stats strip ---------- */
.vms-stats {
  background: var(--vms-cream);
  border-bottom: 1px solid var(--vms-line);
}
.vms-stats .stat h3 {
  font-size: 2.1rem;
  margin: 0;
  color: var(--vms-maroon);
}
.vms-stats .stat span {
  font-size: .82rem;
  color: var(--vms-ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.vms-stats .stat i { color: var(--vms-gold); font-size: 1.4rem; }

/* ---------- Section shell ---------- */
.vms-section { padding: 5rem 0; }
.vms-section--tint { background: var(--vms-cream); }
.vms-section-title { max-width: 640px; }
.vms-section-title p { color: var(--vms-ink-soft); }

/* ---------- Branch cards ---------- */
.vms-branch-card {
  position: relative;
  border-radius: var(--vms-radius);
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--vms-shadow);
}
.vms-branch-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.vms-branch-card:hover img { transform: scale(1.06); }
.vms-branch-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(36,17,20,.88) 0%, rgba(36,17,20,.05) 55%);
}
.vms-branch-card__body { position: relative; z-index: 2; padding: 1.5rem; color: #fff; width: 100%; }
.vms-branch-card__body .tag {
  display: inline-block;
  background: var(--vms-gold);
  color: var(--vms-maroon-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vms-branch-card__body h3 { color: #fff; margin-bottom: .25rem; font-size: 1.5rem; }
.vms-branch-card__body a { color: var(--vms-gold-light); font-weight: 600; font-size: .9rem; text-decoration: none; }
.vms-branch-card__body a:hover { color: #fff; }

/* ---------- About ---------- */
.vms-about__frame { border-radius: var(--vms-radius); overflow: hidden; box-shadow: var(--vms-shadow); }
.vms-about__frame img { width: 100%; display: block; }
.vms-quote {
  border-left: 4px solid var(--vms-gold);
  padding: .25rem 0 .25rem 1.25rem;
  font-family: var(--vms-font-display);
  font-size: 1.15rem;
  color: var(--vms-maroon-dark);
  font-style: italic;
  margin: 1.5rem 0;
}

/* ---------- Feature grid (why VMS) ---------- */
.vms-feature {
  background: var(--vms-white);
  border: 1px solid var(--vms-line);
  border-radius: var(--vms-radius);
  padding: 1.75rem;
  height: 100%;
  transition: all .2s ease;
}
.vms-feature:hover { border-color: var(--vms-gold); box-shadow: var(--vms-shadow); transform: translateY(-4px); }
.vms-feature .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--vms-maroon-tint);
  color: var(--vms-maroon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.vms-feature h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.vms-feature p { font-size: .92rem; color: var(--vms-ink-soft); margin: 0; }

/* ---------- Success story cards ---------- */
.vms-topper {
  background: var(--vms-white);
  border-radius: var(--vms-radius);
  border: 1px solid var(--vms-line);
  padding: 1.75rem;
  height: 100%;
  position: relative;
}
.vms-topper .rank {
  position: absolute; top: -14px; right: 1.25rem;
  background: var(--vms-maroon);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.vms-topper .pct { font-family: var(--vms-font-display); font-size: 2.1rem; color: var(--vms-gold); margin: .25rem 0; }
.vms-topper h5 { font-size: 1.02rem; margin-bottom: .15rem; }
.vms-topper span { font-size: .84rem; color: var(--vms-ink-soft); }

/* ---------- Rector message ---------- */
.vms-rector {
  background: var(--vms-maroon-dark);
  color: rgba(255,255,255,.9);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.vms-rector h2, .vms-rector .vms-eyebrow { color: var(--vms-gold-light); }
.vms-rector p { color: rgba(255,255,255,.82); }
.vms-rector__photo {
/*  width: 130px; height: 130px;*/
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.vms-rector__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.vms-testimonial {
  background: var(--vms-white);
  border: 1px solid var(--vms-line);
  border-radius: var(--vms-radius);
  padding: 1.75rem;
  height: 100%;
}
.vms-testimonial .stars { color: var(--vms-gold); font-size: .85rem; margin-bottom: .75rem; }
.vms-testimonial p { font-size: .95rem; color: var(--vms-ink-soft); }
.vms-testimonial .who { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.vms-testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--vms-maroon-tint);
  color: var(--vms-maroon);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--vms-font-display);
}
.vms-testimonial .who strong { display: block; font-size: .9rem; }
.vms-testimonial .who span { font-size: .78rem; color: var(--vms-ink-soft); }

/* ---------- News/events ---------- */
.vms-news-card {
  border-radius: var(--vms-radius);
  border: 1px solid var(--vms-line);
  overflow: hidden;
  height: 100%;
  background: #fff;
  transition: all .2s ease;
}
.vms-news-card:hover { box-shadow: var(--vms-shadow); transform: translateY(-4px); }
.vms-news-card .date-badge {
  background: var(--vms-maroon);
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  padding: .5rem .75rem;
  line-height: 1.1;
}
.vms-news-card .date-badge strong { font-size: 1.2rem; font-family: var(--vms-font-display); }
.vms-news-card .date-badge span { font-size: .68rem; text-transform: uppercase; }
.vms-news-card .body { padding: 1.5rem; }
.vms-news-card .cat { color: var(--vms-gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.vms-news-card h5 { font-size: 1.05rem; margin: .4rem 0 .5rem; }

/* ---------- CTA band ---------- */
.vms-cta {
  background: linear-gradient(120deg, var(--vms-maroon) 0%, var(--vms-maroon-dark) 100%);
  border-radius: 24px;
  padding: 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vms-cta::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(224,178,110,.18);
}
.vms-cta h2 { color: #fff; }

/* ---------- Breadcrumb ---------- */
.vms-breadcrumb {
  background: var(--vms-cream);
  border-bottom: 1px solid var(--vms-line);
  font-size: .85rem;
}
.vms-breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; }
.vms-breadcrumb li { display: flex; align-items: center; gap: .4rem; color: var(--vms-ink-soft); }
.vms-breadcrumb a { color: var(--vms-ink-soft); text-decoration: none; font-weight: 500; }
.vms-breadcrumb a:hover { color: var(--vms-maroon); }
.vms-breadcrumb li[aria-current] { color: var(--vms-maroon); font-weight: 600; }


/* ---------- Founder page ---------- */
.vms-founder-hero {
  background: linear-gradient(120deg, var(--vms-maroon-dark) 0%, var(--vms-maroon) 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.vms-founder-hero .vms-eyebrow { color: var(--vms-gold-light); }
.vms-founder-hero .vms-eyebrow::before { background: var(--vms-gold-light); }
.vms-founder-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.vms-founder-hero p.lead { color: rgba(255,255,255,.85); max-width: 62ch; }

.vms-founder-photo {
  width: 190px; height: 190px;
  border-radius: 50%;
  background: var(--vms-maroon-tint);
  color: var(--vms-maroon);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vms-font-display);
  font-weight: 600;
  font-size: 3rem;
  margin: 0 auto;
  border: 6px solid var(--vms-cream-deep);
  box-shadow: var(--vms-shadow);
  overflow: hidden;
}
.vms-founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vms-founder-caption {
  text-align: center;
  font-size: .8rem;
  color: var(--vms-ink-soft);
  margin-top: .9rem;
}

.vms-timeline { position: relative; padding-left: 2rem; }
.vms-timeline::before {
  content: "";
  position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: var(--vms-line);
}
.vms-timeline-item { position: relative; padding-bottom: 1.75rem; }
.vms-timeline-item:last-child { padding-bottom: 0; }
.vms-timeline-item::before {
  content: "";
  position: absolute; left: -2rem; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--vms-gold);
  border: 3px solid var(--vms-white);
  box-shadow: 0 0 0 2px var(--vms-line);
}
.vms-timeline-item .yr { font-family: var(--vms-font-display); font-weight: 600; color: var(--vms-maroon); font-size: 1rem; display: block; margin-bottom: .15rem; }
.vms-timeline-item p { margin: 0; color: var(--vms-ink-soft); font-size: .92rem; }

/* ---------- Contact ---------- */
.vms-contact-form {
  background: var(--vms-white); border: 1px solid var(--vms-line); border-radius: var(--vms-radius);
  padding: 2rem;
}
.vms-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vms-form-group { margin-bottom: 1.1rem; }
.vms-form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--vms-ink); margin-bottom: .4rem; }
.vms-form-group .req { color: var(--vms-gold); }
.vms-form-control {
  width: 100%; border: 1px solid var(--vms-line); border-radius: 10px; padding: .7rem .9rem;
  font-family: var(--vms-font-body); font-size: .92rem; color: var(--vms-ink); background: var(--vms-cream);
  transition: border-color .2s ease, background .2s ease;
}
.vms-form-control:focus { outline: none; border-color: var(--vms-maroon); background: var(--vms-white); }
textarea.vms-form-control { resize: vertical; min-height: 120px; }

.vms-contact-info { list-style: none; margin: 0; padding: 0; }
.vms-contact-info li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--vms-line); }
.vms-contact-info li:last-child { border-bottom: none; }
.vms-contact-info .ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--vms-maroon-tint); color: var(--vms-maroon);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.vms-contact-info .body span { display: block; font-size: .9rem; color: var(--vms-ink-soft); line-height: 1.6; }
.vms-contact-info .body a { color: var(--vms-ink-soft); text-decoration: none; }
.vms-contact-info .body a:hover { color: var(--vms-maroon); }

.vms-map-frame { border-radius: var(--vms-radius); overflow: hidden; border: 1px solid var(--vms-line); }
.vms-map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

.vms-form-status { font-size: .88rem; padding: .8rem 1rem; border-radius: 10px; margin-bottom: 1rem; display: none; }
.vms-form-status.show { display: block; }
.vms-form-status.ok { background: #E9F5EC; color: #1E7B34; }

@media (max-width: 767.98px) {
  .vms-form-row { grid-template-columns: 1fr; }
}


/* ---------- Pre-school branch cards ---------- */
.vms-preschool-card {
  border-radius: var(--vms-radius);
  border: 1px solid var(--vms-line);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: all .2s ease;
}
.vms-preschool-card:hover { box-shadow: var(--vms-shadow); transform: translateY(-4px); }
.vms-preschool-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.vms-preschool-card .body { padding: 1.5rem; }
.vms-preschool-card .status {
  display: inline-block;
  background: var(--vms-gold);
  color: var(--vms-maroon-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vms-preschool-card h5 { font-size: 1.05rem; margin-bottom: .6rem; }
.vms-preschool-card .contact-item { display: flex; gap: .5rem; font-size: .85rem; color: var(--vms-ink-soft); margin-bottom: .4rem; align-items: flex-start; }
.vms-preschool-card .contact-item i { color: var(--vms-gold); margin-top: .15rem; }
.vms-preschool-card .contact-item:last-child { margin-bottom: 0; }
.vms-preschool-card.is-coming-soon img { object-fit: contain; background: var(--vms-cream); padding: 1.5rem; }


/* ---------- Footer ---------- */
.vms-footer { background: var(--vms-ink); color: rgba(255,255,255,.72); }
.vms-footer h5 { color: #fff; font-family: var(--vms-font-display); font-size: 1.05rem; margin-bottom: 1.1rem; }
.vms-footer a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .92rem; }
.vms-footer a:hover { color: var(--vms-gold-light); }
.vms-footer ul { list-style: none; padding: 0; margin: 0; }
.vms-footer ul li { margin-bottom: .6rem; }
.vms-footer .contact-item { display: flex; gap: .6rem; margin-bottom: .9rem; font-size: .88rem; }
.vms-footer .contact-item i { color: var(--vms-gold); margin-top: .2rem; }
.vms-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; color: rgba(255,255,255,.55); }
.vms-footer .vms-social a { background: rgba(255,255,255,.08); }

/* ---------- Back to top ---------- */
.vms-back-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--vms-maroon); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease;
  z-index: 1040;
}
.vms-back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.vms-back-top:hover { background: var(--vms-maroon-dark); color: #fff; }

@media (max-width: 991.98px) {
  .vms-hero { padding: 3rem 0 3.5rem; }
  .vms-hero__badge { position: static; margin-top: 1rem; }
  .vms-rector { padding: 2rem; }
  .vms-cta { padding: 2.25rem; text-align: center; }
}


/* ==========================================================================
   PAGE-SPECIFIC — PRE-SCHOOL, SAKHER BAZAR (pre-school-sakher-bazar.html)
   Used only on that page. Safe to copy this whole block on its own into
   another stylesheet — it only depends on the :root variables above.
   ========================================================================== */

/* ---------- Trustee cards ---------- */
.vms-sb-trustee {
  background: var(--vms-white);
  border: 1px solid var(--vms-line);
  border-radius: var(--vms-radius);
  padding: 1.75rem 1.25rem;
  height: 100%;
  text-align: center;
  transition: all .2s ease;
}
.vms-sb-trustee:hover { box-shadow: var(--vms-shadow); transform: translateY(-4px); }
.vms-sb-trustee .avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--vms-maroon-tint);
  color: var(--vms-maroon);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vms-font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem;
  overflow: hidden;
  border: 4px solid var(--vms-cream-deep);
  box-shadow: var(--vms-shadow);
}
.vms-sb-trustee .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vms-sb-trustee h5 { font-size: .98rem; margin-bottom: .2rem; }
.vms-sb-trustee span { font-size: .78rem; color: var(--vms-ink-soft); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Hero banner image (broad, full-width) ---------- */
.vms-sb-hero-banner {
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,.12);
  box-shadow: var(--vms-shadow);
  height: 420px;
}
.vms-sb-hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 991.98px) { .vms-sb-hero-banner { height: 300px; } }
@media (max-width: 575.98px) { .vms-sb-hero-banner { height: 210px; } }

/* ---------- Photo collage (Why Choose section) ---------- */
.vms-sb-collage { position: relative; padding-bottom: 1.75rem; padding-right: 1.75rem; }
.vms-sb-collage .a {
  width: 100%; height: 340px; object-fit: cover; display: block;
  border-radius: var(--vms-radius);
  box-shadow: var(--vms-shadow);
}
.vms-sb-collage .b {
  position: absolute; right: 0; bottom: 0;
  width: 58%; height: 190px; object-fit: cover; display: block;
  border-radius: var(--vms-radius);
  border: 6px solid var(--vms-white);
  box-shadow: var(--vms-shadow);
}
@media (max-width: 767.98px) {
  .vms-sb-collage .a { height: 260px; }
  .vms-sb-collage .b { height: 150px; }
}
@media (max-width: 575.98px) {
  .vms-sb-collage .b { display: none; }
  .vms-sb-collage { padding-bottom: 0; padding-right: 0; }
}

/* ---------- Full-width section banner image ---------- */
.vms-sb-banner-img {
  border-radius: var(--vms-radius);
  overflow: hidden;
  box-shadow: var(--vms-shadow);
  height: 260px;
}
.vms-sb-banner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767.98px) {
  .vms-sb-banner-img { height: 170px; }
}

/* ---------- Notes column image ---------- */
.vms-sb-notes-img {
  border-radius: var(--vms-radius);
  overflow: hidden;
  box-shadow: var(--vms-shadow);
  height: 200px;
}
.vms-sb-notes-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Data tables (age criteria / timings / fees) ---------- */
.vms-sb-table-wrap {
  overflow-x: auto;
  border-radius: var(--vms-radius);
  border: 1px solid var(--vms-line);
}
.vms-sb-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--vms-white);
}
.vms-sb-table thead th {
  background: var(--vms-maroon);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .85rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.vms-sb-table tbody td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--vms-line);
  color: var(--vms-ink);
  white-space: nowrap;
}
.vms-sb-table tbody tr:nth-child(even) { background: var(--vms-cream); }
.vms-sb-table tbody tr:last-child td { border-bottom: none; }
.vms-sb-table th.total,
.vms-sb-table td.total { color: var(--vms-maroon); font-weight: 700; }
.vms-sb-fee-table { min-width: 760px; }

/* ---------- Admission notes list ---------- */
.vms-sb-notes { list-style: none; padding: 0; margin: 0; }
.vms-sb-notes li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--vms-line);
  font-size: .92rem;
  color: var(--vms-ink-soft);
}
.vms-sb-notes li:last-child { border-bottom: none; }
.vms-sb-notes li i { color: var(--vms-gold); margin-top: .2rem; }

/* ---------- Mini campus / contact cards ---------- */
.vms-sb-campus-mini {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--vms-white);
  border: 1px solid var(--vms-line);
  border-radius: var(--vms-radius);
  padding: 1.25rem;
  height: 100%;
}
.vms-sb-campus-mini .pin { color: var(--vms-gold); font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.vms-sb-campus-mini h6 { font-family: var(--vms-font-display); color: var(--vms-maroon-dark); margin-bottom: .3rem; }
.vms-sb-campus-mini p { margin: 0 0 .3rem; font-size: .85rem; color: var(--vms-ink-soft); }
.vms-sb-campus-mini p:last-child { margin-bottom: 0; }
.vms-sb-campus-mini a { font-size: .85rem; }

.vms-sb-campus-mini--photo { flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
.vms-sb-campus-mini--photo .photo { height: 160px; width: 100%; }
.vms-sb-campus-mini--photo .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vms-sb-campus-mini--photo .body { padding: 1.25rem; }
.vms-sb-campus-mini--photo h6 { display: flex; align-items: center; gap: .4rem; margin-bottom: .5rem; }
.vms-sb-campus-mini--photo .pin { font-size: 1rem; margin-top: 0; }

@media (max-width: 767.98px) {
  .vms-sb-table thead th,
  .vms-sb-table tbody td { padding: .65rem .75rem; font-size: .85rem; }
}

/* ==========================================================================
   END: PAGE-SPECIFIC — PRE-SCHOOL, SAKHER BAZAR
   ========================================================================== */



/*06-08-2026*/
.home .vms-news-card a{
  text-decoration: none;
}













/*Responsive*/
/*06-08-2026*/

@media (max-width: 991.5px){
  .vms-section {
    padding: 3rem 0;
  }
  .cta-btn-wrap{
    justify-content: center;
  }
}
@media (max-width: 425.5px) {
  .vms-logo img{
    height: 32px !important;
  }
  .vms-footer .footer-logo{
    height: 40px !important; 
  }
}




