/* ============================================================
   Vision of Culture — site-level layout glue on top of the
   ported riadiat design system (custom.css + _nuxt css).
   Page-specific overrides for the Laravel Blade pages live here.
   ============================================================ */

/* keep the page from ever scrolling sideways */
html, body { max-width: 100%; overflow-x: hidden; }

.main-content { min-height: 60vh; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  z-index: 2000;
  background: #1fb9b3;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { right: 0; }

/* Generic inner-page hero (breadcrumb banner) for existing pages */
.voc-page-hero {
  background: linear-gradient(135deg, #2c6e64 0%, #1fb9b3 100%);
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .voc-page-hero { padding: 80px 0 64px; }
}
.voc-page-hero h1 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.voc-page-hero .voc-breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  opacity: 0.95;
  flex-wrap: wrap;
}
.voc-page-hero .voc-breadcrumb a { color: #e8f6f3; text-decoration: none; }
.voc-page-hero .voc-breadcrumb a:hover { text-decoration: underline; }
.voc-page-hero__sub { max-width: 720px; margin: 0 auto 14px; opacity: .95; font-size: 1.05rem; line-height: 1.8; }

/* ============================================================
   INNER PAGES — shared building blocks
   ============================================================ */
.voc-inner { padding: 70px 0; }
.voc-inner--alt { background: #f4faf9; }
.voc-inner .voc-vm { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .voc-inner .voc-vm { grid-template-columns: 1fr; } }
.voc-inner .voc-about-page-img { min-height: 320px; }
.voc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.voc-cards-grid--2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
.voc-cards-grid--4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
@media (max-width: 575px) { .voc-cards-grid, .voc-cards-grid--2, .voc-cards-grid--4 { grid-template-columns: 1fr; } }

/* generic content card */
.voc-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 60, 56, .08);
  border: 1px solid #eef3f2;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.voc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20, 60, 56, .16); }
.voc-card__media { height: 210px; overflow: hidden; background: #e8f6f3; }
.voc-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voc-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.voc-card__title { font-size: 1.12rem; font-weight: 700; color: #1a4a44; margin: 0; }
.voc-card__text { font-size: .95rem; color: #5a716d; line-height: 1.8; margin: 0; }
.voc-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #7a8f8b; margin-top: auto; }
.voc-card .voc-btn { margin-top: auto; }

/* rich text blocks from the CMS */
.voc-richtext { line-height: 2; color: #40534f; font-size: 1.02rem; }
.voc-richtext h1, .voc-richtext h2, .voc-richtext h3 { color: #1a4a44; }
.voc-richtext img { max-width: 100%; height: auto; border-radius: 14px; }

/* empty state */
.voc-empty { text-align: center; padding: 60px 0; color: #7a8f8b; }
.voc-empty i { font-size: 46px; color: #bcded8; margin-bottom: 14px; display: block; }

/* forms */
.voc-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(20, 60, 56, .1);
  border: 1px solid #eef3f2;
  padding: 34px;
}
.voc-form label { font-weight: 600; color: #234b46; margin-bottom: 6px; display: block; font-size: .95rem; }
.voc-form .form-control, .voc-form .form-select {
  border-radius: 12px;
  border: 1px solid #d7e6e3;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #fbfdfd;
}
.voc-form .form-control:focus, .voc-form .form-select:focus {
  border-color: #34b3ab;
  box-shadow: 0 0 0 3px rgba(52, 179, 171, .15);
}
.voc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 575px) { .voc-two-col { grid-template-columns: 1fr; } }

/* about page image */
.voc-about-page-img { border-radius: 22px; overflow: hidden; box-shadow: 0 20px 50px rgba(20,60,56,.14); }
.voc-about-page-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* team (board of directors) cards */
.voc-team-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(20,60,56,.08); border: 1px solid #eef3f2;
  text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.voc-team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(20,60,56,.16); }
.voc-team-card__img { height: 250px; overflow: hidden; background: #e8f6f3; }
.voc-team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.voc-team-card__body { padding: 18px 14px 22px; }
.voc-team-card__body h5 { font-weight: 700; color: #1a4a44; margin: 0 0 6px; font-size: 1.05rem; }
.voc-team-card__body span { color: #34b3ab; font-weight: 600; font-size: .9rem; }

/* partner logo grid */
.voc-partners-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px;
}
.voc-partner-card {
  background: #fff; border-radius: 16px; border: 1px solid #eef3f2;
  box-shadow: 0 8px 22px rgba(20,60,56,.06); padding: 22px; aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.voc-partner-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,60,56,.14); }
.voc-partner-logo {
  width: 100%; height: 100%; background-size: contain;
  background-repeat: no-repeat; background-position: center;
}

/* gallery grid + lightbox */
.voc-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px;
}
.voc-gallery-item {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 10px 26px rgba(20,60,56,.1);
}
.voc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.voc-gallery-item:hover img { transform: scale(1.08); }
.voc-gallery-item__zoom {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(20,60,56,.35); color: #fff; font-size: 26px; opacity: 0; transition: opacity .3s ease;
}
.voc-gallery-item:hover .voc-gallery-item__zoom { opacity: 1; }

/* video play button */
.voc-video-card .voc-card__media { position: relative; display: block; }
.voc-video-play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); color: #1f5c55; border-radius: 50%;
  font-size: 22px; box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease;
}
.voc-video-card:hover .voc-video-play { transform: scale(1.12); background: #34b3ab; color: #fff; }

/* pagination */
.voc-pagination { display: flex; justify-content: center; margin-top: 40px; }
.voc-pagination .pagination { gap: 6px; }
.voc-pagination .page-link {
  border-radius: 10px !important; border: 1px solid #d7e6e3; color: #1f5c55; margin: 0 2px;
}
.voc-pagination .page-item.active .page-link { background: #34b3ab; border-color: #34b3ab; color: #fff; }

/* pricing / membership / sponsorship cards */
.voc-pricing-grid { align-items: stretch; }
.voc-pricing-desc { font-size: .92rem; line-height: 1.9; color: #4a5f5b; text-align: start; margin: 6px 0 18px; }
.voc-pricing-desc ul { padding-inline-start: 18px; margin: 0; }
.voc-pricing-desc p { margin: 0 0 8px; }
.voc-sponsor-card .voc-btn--block { margin-top: auto; }

/* outline button */
.voc-btn--outline {
  background: transparent !important;
  color: #1f5c55 !important;
  border: 1.5px solid #34b3ab !important;
}
.voc-btn--outline:hover { background: #e8f6f3 !important; color: #14524b !important; }

/* success alert */
.voc-alert-success {
  background: #e5f7ee; border: 1px solid #b7e6cd; color: #1c7a4b;
  border-radius: 12px; padding: 12px 16px; margin-bottom: 18px; font-weight: 600;
}

/* contact page */
.voc-contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start;
}
@media (max-width: 900px) { .voc-contact-grid { grid-template-columns: 1fr; } }
.voc-contact-item { display: flex; gap: 14px; align-items: center; margin-top: 20px; }
.voc-contact-ic {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  background: #e8f6f3; color: #1f9d94; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.voc-contact-item small { display: block; color: #7a8f8b; font-size: .82rem; margin-bottom: 2px; }
.voc-contact-item a, .voc-contact-item span { color: #234b46; font-weight: 600; text-decoration: none; }
.voc-contact-item a:hover { color: #1f9d94; }
.voc-map { margin-top: 40px; border-radius: 20px; overflow: hidden; box-shadow: 0 14px 40px rgba(20,60,56,.12); }
.voc-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* career download banner */
.voc-career-download {
  background: #f0faf8; border: 1px dashed #9fd8d1; border-radius: 14px;
  padding: 20px; margin-bottom: 24px; text-align: center;
}
.voc-career-download p { margin: 0 0 12px; color: #40534f; }
.voc-form input[type="file"].form-control { padding: 9px 12px; }

/* form title + notices */
.voc-form-title { text-align: center; color: #1a4a44; font-weight: 700; margin-bottom: 20px; font-size: 1.5rem; }
.voc-notice {
  border-radius: 14px; padding: 16px 18px; margin-bottom: 22px; font-size: .95rem; line-height: 1.9;
}
.voc-notice p { margin: 0 0 8px; }
.voc-notice ul { margin: 6px 0 0; padding-inline-start: 20px; }
.voc-notice--warn { background: #fff6e9; border: 1px solid #f5d9a8; color: #8a5a10; }

/* success card */
.voc-success-card {
  max-width: 560px; margin: 0 auto; text-align: center; background: #fff;
  border-radius: 22px; padding: 48px 34px; box-shadow: 0 18px 50px rgba(20,60,56,.12); border: 1px solid #eef3f2;
}
.voc-success-ic { font-size: 64px; color: #2bb67f; display: block; margin-bottom: 16px; }
.voc-success-card h1 { color: #1a4a44; font-weight: 700; margin: 0 0 10px; }
.voc-success-card p { color: #5a716d; font-size: 1.05rem; margin-bottom: 24px; }

/* detail pages */
.voc-detail-hero-img { width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 46px rgba(20,60,56,.12); margin-bottom: 30px; }
.voc-detail-hero-img img { width: 100%; height: auto; display: block; }
.voc-detail-title { color: #1a4a44; font-weight: 700; font-size: 1.8rem; margin-bottom: 18px; }
.voc-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
@media (max-width: 900px) { .voc-detail-layout { grid-template-columns: 1fr; } }
.voc-side-card {
  background: #fff; border-radius: 18px; border: 1px solid #eef3f2;
  box-shadow: 0 12px 30px rgba(20,60,56,.08); padding: 22px; position: sticky; top: 100px;
}
.voc-side-card h4 { color: #1a4a44; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.voc-side-list { list-style: none; padding: 0; margin: 0; }
.voc-side-list li { padding: 10px 0; border-bottom: 1px solid #f0f5f4; display: flex; gap: 8px; }
.voc-side-list li:last-child { border-bottom: 0; }
.voc-side-list a { color: #234b46; text-decoration: none; font-weight: 600; }
.voc-side-list a:hover, .voc-side-list a.active { color: #1f9d94; }
.voc-side-posts { display: flex; flex-direction: column; gap: 14px; }
.voc-side-post { display: flex; gap: 12px; text-decoration: none; align-items: center; }
.voc-side-post img { width: 72px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.voc-side-post p { margin: 0 0 4px; color: #234b46; font-weight: 600; font-size: .92rem; line-height: 1.5; }
.voc-side-post span { color: #7a8f8b; font-size: .8rem; }
.voc-side-post:hover p { color: #1f9d94; }

/* governance document cards */
.voc-gov-block { margin-bottom: 44px; }
.voc-gov-block:last-child { margin-bottom: 0; }
.voc-doc-card {
  background: #fff; border-radius: 16px; border: 1px solid #eef3f2;
  box-shadow: 0 10px 26px rgba(20,60,56,.07); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.voc-doc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,60,56,.14); }
.voc-doc-ic {
  width: 52px; height: 52px; border-radius: 14px; background: #e8f6f3; color: #1f9d94;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.voc-doc-body { flex: 1; }
.voc-doc-body h4 { color: #1a4a44; font-weight: 700; font-size: 1.05rem; margin: 0 0 6px; }
.voc-doc-body p { color: #5a716d; font-size: .92rem; line-height: 1.7; margin: 0; }
.voc-doc-card .voc-btn { align-self: flex-start; }

/* status badge on cards */
.voc-card__media { position: relative; }
.voc-status-badge {
  position: absolute; top: 12px; inset-inline-start: 12px;
  padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; color: #fff;
  backdrop-filter: blur(4px);
}
.voc-status-active   { background: #2bb67f; }
.voc-status-upcoming { background: #e08a2b; }
.voc-status-ended    { background: #8a99a6; }
.voc-status-live     { background: #e0342b; }

/* ============================================================
   MEMBER ACCOUNT AREA
   ============================================================ */
.voc-account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .voc-account-layout { grid-template-columns: 1fr; } }
.voc-account-side {
  background: #fff; border: 1px solid #eef3f2; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(20,60,56,.08); position: sticky; top: 100px;
}
.voc-account-user { text-align: center; padding: 28px 18px 20px; background: linear-gradient(135deg,#2c6e64,#1fb9b3); color: #fff; }
.voc-account-user img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.5); margin-bottom: 10px; background:#fff; }
.voc-account-user h4 { margin: 0; font-weight: 700; font-size: 1.05rem; }
.voc-account-user span { font-size: .82rem; opacity: .9; word-break: break-all; }
.voc-account-nav { display: flex; flex-direction: column; padding: 10px; }
.voc-account-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; color: #234b46; font-weight: 600; text-decoration: none; transition: background .2s ease, color .2s ease; }
.voc-account-nav a i { width: 20px; text-align: center; color: #1f9d94; }
.voc-account-nav a:hover, .voc-account-nav a.active { background: #e8f6f3; color: #1f5c55; }
.voc-account-nav a.voc-account-logout { color: #c0392b; }
.voc-account-nav a.voc-account-logout i { color: #c0392b; }

.voc-account-content { min-width: 0; }
.voc-account-welcome { margin-bottom: 22px; }
.voc-account-welcome h2 { color: #1a4a44; font-weight: 700; margin: 0 0 6px; }
.voc-account-welcome p { color: #5a716d; margin: 0; }
.voc-account-card { background: #fff; border: 1px solid #eef3f2; border-radius: 18px; box-shadow: 0 12px 30px rgba(20,60,56,.07); padding: 24px; margin-top: 22px; }
.voc-account-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.voc-account-card__head h3 { color: #1a4a44; font-weight: 700; font-size: 1.15rem; margin: 0; }
.voc-account-table { width: 100%; border-collapse: collapse; }
.voc-account-table th { text-align: start; color: #7a8f8b; font-size: .82rem; font-weight: 700; padding: 8px 10px; border-bottom: 2px solid #eef3f2; }
.voc-account-table td { padding: 12px 10px; border-bottom: 1px solid #f0f5f4; color: #34433f; font-size: .92rem; }
.voc-account-empty { color: #7a8f8b; text-align: center; padding: 24px; }
.voc-chip { padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.voc-chip--new { background: #fff3e0; color: #b7791f; }
.voc-chip--done { background: #e5f7ee; color: #1c7a4b; }

/* digital membership card */
.voc-membership-card {
  max-width: 460px; border-radius: 22px; padding: 22px; color: #fff;
  background: linear-gradient(135deg, #123f3a 0%, #1f7a70 55%, #34b3ab 100%);
  box-shadow: 0 20px 50px rgba(20,60,56,.3); position: relative; overflow: hidden;
}
.voc-membership-card.is-invalid { filter: grayscale(.4) opacity(.9); }
.voc-mcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.voc-mcard-logo { height: 40px; }
.voc-mcard-badge { padding: 4px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.voc-mcard-badge.ok { background: rgba(255,255,255,.9); color: #1c7a4b; }
.voc-mcard-badge.no { background: rgba(0,0,0,.25); color: #ffd7d1; }
.voc-mcard-body { display: flex; gap: 16px; align-items: center; justify-content: space-between; }
.voc-mcard-info { flex: 1; }
.voc-mcard-label { display: block; font-size: .72rem; opacity: .8; margin-bottom: 2px; }
.voc-mcard-name { margin: 0 0 12px; font-size: 1.3rem; font-weight: 800; }
.voc-mcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.voc-mcard-grid b { font-size: .95rem; }
.voc-mcard-qr { background: #fff; padding: 8px; border-radius: 12px; text-align: center; }
.voc-mcard-qr span { display: block; color: #123f3a; font-size: .65rem; margin-top: 4px; font-weight: 700; }
.voc-mcard-foot { margin-top: 16px; text-align: center; font-size: .8rem; opacity: .85; border-top: 1px solid rgba(255,255,255,.2); padding-top: 12px; }

/* verification page icon */
.voc-verify-ic { font-size: 66px; display: block; }
.voc-verify-ic.ok { color: #2bb67f; }
.voc-verify-ic.no { color: #e0342b; }

/* auth pages */
.voc-auth-wrap { max-width: 460px; margin: 0 auto; }
.voc-auth-alt { text-align: center; margin-top: 16px; color: #5a716d; }
.voc-auth-alt a { color: #1f9d94; font-weight: 700; text-decoration: none; }

/* countdown timer */
.voc-countdown { display: flex; gap: 8px; margin: 4px 0 6px; flex-wrap: wrap; }
.voc-cd-unit {
  background: #e8f6f3; border-radius: 10px; padding: 6px 10px; text-align: center; min-width: 48px;
}
.voc-cd-unit b { display: block; color: #1f5c55; font-size: 1.1rem; line-height: 1; }
.voc-cd-unit small { color: #7a8f8b; font-size: .68rem; }
.voc-cd-live { color: #e0342b; font-weight: 700; }

/* search bar + filter chips */
.voc-searchbar { display: flex; gap: 10px; max-width: 620px; margin: 0 auto 20px; }
.voc-searchbar input {
  flex: 1; border: 1px solid #d7e6e3; border-radius: 12px; padding: 12px 16px;
  background: #fff; font-size: .98rem;
}
.voc-searchbar input:focus { outline: none; border-color: #34b3ab; box-shadow: 0 0 0 3px rgba(52,179,171,.15); }
.voc-searchbar button {
  border: 0; border-radius: 12px; padding: 12px 22px; font-weight: 700; color: #fff;
  background: linear-gradient(90deg, #2c8f86, #34b3ab); cursor: pointer;
}
.voc-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.voc-filter-chips a {
  padding: 7px 16px; border-radius: 999px; background: #fff; border: 1px solid #dbeeeb;
  color: #34433f; font-weight: 600; font-size: .88rem; text-decoration: none; transition: all .2s ease;
}
.voc-filter-chips a:hover { background: #e8f6f3; color: #1f5c55; }
.voc-filter-chips a.active { background: linear-gradient(90deg, #2c8f86, #34b3ab); color: #fff; border-color: transparent; }

/* events calendar / timeline */
.voc-timeline { max-width: 820px; margin: 0 auto; }
.voc-timeline-group { margin-bottom: 30px; }
.voc-timeline-month {
  display: inline-block; background: linear-gradient(90deg,#2c8f86,#34b3ab); color: #fff;
  font-weight: 700; padding: 8px 22px; border-radius: 999px; margin-bottom: 16px;
}
.voc-timeline-items { display: flex; flex-direction: column; gap: 12px; }
.voc-timeline-item {
  display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #eef3f2;
  border-radius: 14px; padding: 12px 16px; text-decoration: none; box-shadow: 0 8px 20px rgba(20,60,56,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.voc-timeline-item:hover { transform: translateX(-4px); box-shadow: 0 14px 30px rgba(20,60,56,.14); }
.voc-timeline-img { width: 76px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.voc-timeline-img img { width: 100%; height: 100%; object-fit: cover; }
.voc-timeline-body { flex: 1; }
.voc-timeline-body h4 { margin: 4px 0 0; color: #1a4a44; font-weight: 700; font-size: 1.02rem; }
.voc-timeline-date { color: #1f9d94; font-size: .85rem; font-weight: 600; }
.voc-timeline-arrow { color: #bcded8; font-size: 20px; }

/* stat counters */
.voc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 767px) { .voc-stats { grid-template-columns: repeat(2, 1fr); } }
.voc-stat {
  background: #fff; border: 1px solid #eef3f2; border-radius: 16px; padding: 26px 16px;
  text-align: center; box-shadow: 0 10px 26px rgba(20,60,56,.07);
}
.voc-stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: #1f9d94; line-height: 1; }
.voc-stat-label { display: block; margin-top: 8px; color: #5a716d; font-weight: 600; font-size: .92rem; }

/* organizational structure */
.voc-org { display: flex; flex-direction: column; align-items: center; }
.voc-org .voc-cards-grid, .voc-org .voc-cards-grid--4, .voc-org .voc-head { width: 100%; }
.voc-org-node {
  background: #fff; border: 1px solid #dbeeeb; border-radius: 14px;
  padding: 14px 26px; font-weight: 700; color: #1a4a44; text-align: center;
  box-shadow: 0 8px 22px rgba(20,60,56,.08); min-width: 240px;
}
.voc-org-top { background: linear-gradient(90deg,#2c8f86,#34b3ab); color:#fff; border:0; }
.voc-org-line { width: 2px; height: 26px; background: #bcded8; }
.voc-org-committees { margin-top: 30px; text-align: center; }
.voc-org-committees h4 { color:#1f5c55; font-weight:700; margin-bottom:14px; }
.voc-org-chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:760px; }
.voc-org-chip { background:#e8f6f3; color:#1f5c55; border-radius:999px; padding:8px 16px; font-weight:600; font-size:.9rem; }

/* job requirements accordion */
.voc-job-req { margin: 4px 0 14px; border-top: 1px solid #eef3f2; padding-top: 10px; }
.voc-job-req summary { cursor: pointer; font-weight: 700; color: #1f5c55; font-size: .95rem; }
.voc-job-req .voc-richtext { margin-top: 8px; font-size: .92rem; }

/* Back-to-top progress ring */
.progress-wrap {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  background: #fff;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all .3s ease;
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.progress-wrap svg path { fill: none; }
.progress-wrap svg.progress-circle path {
  stroke: #1fb9b3;
  stroke-width: 4;
  box-sizing: border-box;
}

/* Floating WhatsApp button (spec asks for it on all pages) */
.voc-whatsapp-float {
  position: fixed;
  inset-inline-start: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 1500;
  transition: transform .25s ease;
}
.voc-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ============================================================
   HEADER / NAVBAR  (teal gradient bar — matches reference)
   ============================================================ */
.voc-header { position: sticky; top: 0; z-index: 1030; }
header.voc-header .voc-navbar,
.voc-navbar.navbar {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(20, 60, 56, .08);
  border-bottom: 1px solid #eef3f2;
  padding: 8px 0 !important;
}
.voc-navbar .voc-nav-inner { display: flex !important; align-items: center; gap: 12px; flex-wrap: nowrap; }
@media (min-width: 1200px) {
  .voc-navbar .voc-desktop-menu { display: flex !important; align-items: center; flex-grow: 1; }
}
.voc-brand { margin: 0; padding: 0; }
.voc-brand img { display: block; }

.voc-menu { gap: 2px; align-items: center; margin: 0; }
.voc-menu .nav-item { position: relative; }
.voc-navbar .voc-menu { display: flex !important; flex-direction: row !important; flex-wrap: nowrap; gap: 0; }
.voc-navbar .voc-menu .nav-link {
  color: #234b46 !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 9px !important;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
  display: block;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .voc-navbar .voc-menu .nav-link { font-size: 13.5px; padding: 8px 7px !important; }
  .voc-brand img { width: 100px; }
}
.voc-navbar .voc-menu .dropdown-toggle::after { margin-inline-start: .2em; }
.voc-menu .nav-link:hover,
.voc-menu .nav-item.active > .nav-link {
  background: #e8f6f3;
  color: #1f5c55 !important;
}
.voc-menu .dropdown-toggle::after {
  margin-inline-start: .35em;
  vertical-align: .15em;
  opacity: .7;
}
.voc-dropdown {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(20, 60, 56, .18);
  padding: 8px;
  margin-top: 10px;
  min-width: 240px;
}
.voc-dropdown .dropdown-item {
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 14.5px;
  color: #244;
  font-weight: 500;
}
.voc-dropdown .dropdown-item:hover {
  background: #e8f6f3;
  color: #1f5c55;
}

/* open dropdowns on hover on desktop */
@media (min-width: 1200px) {
  .voc-menu .dropdown:hover > .voc-dropdown { display: block; }
}

.voc-nav-actions { flex-shrink: 0; }
.voc-lang-btn, .voc-lang-mini {
  color: #1f5c55;
  border: 1px solid #bfe0da;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.voc-lang-btn:hover, .voc-lang-mini:hover { background: #e8f6f3; color: #14524b; }
.voc-btn-login {
  background: linear-gradient(90deg, #2c8f86, #34b3ab) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 12px;
  padding: 9px 22px;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.voc-btn-login:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(31,92,85,.28); color: #fff !important; }
.voc-toggler {
  border: 1px solid #cfe3df;
  border-radius: 10px;
  padding: 6px 9px;
}
.voc-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31,92,85,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* mobile offcanvas menu */
.voc-offcanvas { max-width: 320px; width: 88vw; }
.voc-offcanvas .offcanvas-body { padding-top: 8px; }
.voc-mobile-menu { gap: 0; }
.voc-mobile-menu > li { list-style: none; }
.voc-mobile-menu .nav-link {
  color: #23423d !important;
  font-weight: 600;
  padding: 13px 8px !important;
  border-bottom: 1px solid #eef3f2;
  min-height: 46px;               /* comfortable touch target */
  display: flex;
  align-items: center;
}
.voc-mobile-menu .nav-link:hover,
.voc-mobile-menu .nav-link.active { color: #1fb9b3 !important; }

/* collapsible group header (mirrors desktop dropdowns) */
.voc-m-group { border-bottom: 1px solid #eef3f2; }
.voc-m-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 13px 8px;
  min-height: 46px;
  font-weight: 600;
  font-size: 15px;
  color: #23423d;
  text-align: start;
  cursor: pointer;
}
.voc-m-toggle:hover { color: #1fb9b3; }
.voc-m-caret {
  font-size: 12px;
  color: #1f9d94;
  transition: transform .25s ease;
  flex-shrink: 0;
}
/* rotate caret when the group is open (Bootstrap sets aria-expanded) */
.voc-m-toggle[aria-expanded="true"] { color: #1fb9b3; }
.voc-m-toggle[aria-expanded="true"] .voc-m-caret { transform: rotate(180deg); }

/* sub-menu items */
.voc-m-sub {
  list-style: none;
  margin: 0;
  padding: 2px 0 8px;
  background: #f6fbfa;
  border-radius: 10px;
}
.voc-m-sub li { list-style: none; }
.voc-m-sub a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 20px;
  color: #3a5651;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.voc-m-sub a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #9fd8d1;
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.voc-m-sub a:hover { color: #1fb9b3; }
.voc-m-sub a:hover::before { background: #1fb9b3; }

/* ============================================================
   FOOTER
   ============================================================ */
.voc-footer {
  background: #123f3a;
  color: #cfe6e2;
  margin-top: 60px;
}
.voc-footer-brand img { height: 58px; margin-bottom: 18px; }
.voc-footer-about { font-size: 14.5px; line-height: 1.9; color: #a9cec8; max-width: 340px; }
.voc-footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.voc-footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff; font-size: 15px;
  transition: background .2s ease, transform .2s ease;
}
.voc-footer-social a:hover { background: #1fb9b3; transform: translateY(-2px); color: #fff; }
.voc-footer-title { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.voc-footer-top a:not(.voc-footer-social a) {
  display: block; color: #a9cec8; text-decoration: none;
  font-size: 14.5px; padding: 6px 0; transition: color .2s ease, padding-inline-start .2s ease;
}
.voc-footer-top a:not(.voc-footer-social a):hover { color: #fff; padding-inline-start: 5px; }
.voc-footer-contact { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; color: #bcddd8; font-size: 14.5px; }
.voc-footer-contact i { color: #1fd0c6; margin-inline-end: 7px; }
.voc-footer-contact a { color: #bcddd8; text-decoration: none; }
.voc-footer-contact a:hover { color: #fff; }
.voc-footer-bottom { background: #0d302c; padding: 18px 0; font-size: 13.5px; color: #9fc4bf; }
.voc-footer-legal span { display: block; font-size: 12px; opacity: .8; }
.voc-footer-legal strong { color: #fff; font-weight: 700; }
.voc-footer-copy { margin-top: 8px; }
@media (min-width: 768px) { .voc-footer-copy { margin-top: 0; } }

/* ============================================================
   HOME PAGE FIXES  (icon sizing, card media, readable text)
   ============================================================ */

/* 1) Feature checkmarks & circle bullets were rendering huge (FA SVG at 1em
      of an oversized parent). Constrain them explicitly. */
.network-features-section svg.check-icon,
.network-features-section .check-icon.svg-inline--fa,
.network-features-section .feature-list__item > svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  flex: 0 0 20px !important;
  color: #1FB9B3;
}
.network-features-section svg.circle-icon,
.network-features-section .circle-icon.svg-inline--fa,
.network-features-section .unordered-list__item > svg {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  flex: 0 0 12px !important;
}
/* generic safety net: never let an inline FA svg exceed its line */
.main-content .svg-inline--fa { max-height: 1.3em; }
.network-features-section .svg-inline--fa { max-height: 22px; }

/* 2) Membership (عضوياتنا) coupon cards — constrain the cover image so the
      card keeps a consistent height inside the carousel. */
.coupon-section .coupon-card { height: 100%; border-radius: 16px; overflow: hidden; }
.coupon-section .coupon-card__img {
  height: 160px !important;
  overflow: hidden;
  border-radius: 14px;
}
.coupon-section .coupon-card__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.coupon-section .swiper-slide { height: auto; }

/* 3) Programs (برامجنا ومبادراتنا) course cards — same treatment. */
.course-card { height: 100%; }
.course-card .img-courses {
  height: 220px !important;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.course-card .img-courses img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Blog cards media */
.blog-info-card .image { height: 200px; overflow: hidden; border-radius: 14px; }
.blog-info-card .image img { width: 100%; height: 100%; object-fit: cover; }

/* keep carousel arrows from overlapping card content awkwardly */
.swiper-container { position: relative; }

/* 4) Slightly larger, more readable body text across the home sections */
.main-content { font-size: 16px; }
.header-desc-page { font-size: 18px !important; line-height: 1.9; }
.network-features-section .feature-list__item .value,
.network-features-section .unordered-list__item .item-value { font-size: 16px !important; }
.services-section .subheading,
.service-card__description,
.consulting-section .section-description,
.card-description,
.coupon-card__title,
.course-card .course-title,
.blog-info-card .title p,
.testimonail-card .card-content__text { font-size: 16px !important; line-height: 1.85; }
.voc-lead { font-size: 17px !important; }
.voc-sub, .voc-panel-p, .voc-vm-card p, .voc-news-body p { font-size: 15.5px !important; }

/* 5) Partner logos (شركاء النجاح) were background-images shown at natural
      size inside a 72px circle → only a blank corner was visible. */
.partners-grid .avatar-image,
.partners-list .d-image-avatar {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff;
}


/* ============================================================
   Digital store — cart / checkout / orders
   ============================================================ */
.voc-btn-outline{display:inline-flex;align-items:center;gap:8px;padding:11px 22px;border-radius:12px;border:2px solid #34b3ab;color:#14524b;background:#fff;font-weight:700;font-size:14.5px;text-decoration:none;transition:.2s;cursor:pointer}
.voc-btn-outline:hover{background:#e8f6f3;color:#14524b}
.voc-btn--sm{padding:6px 14px;font-size:13px;border-radius:9px}
.voc-alert-danger{background:#fdecea;border:1px solid #f5c6cb;color:#a12622;padding:12px 16px;border-radius:12px;margin-bottom:18px}
.voc-alert-danger ul{padding-inline-start:18px}

/* store product cards */
.voc-product-card .voc-card__body{display:flex;flex-direction:column;gap:10px}
.voc-product-price{font-weight:800;color:#14524b;font-size:1.05rem}
.voc-product-price .voc-price-free{color:#1c7a4b}
.voc-product-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-top:auto}
.voc-product-actions form{margin:0}
.voc-detail-price{display:inline-block;background:linear-gradient(135deg,#2e9c94,#34b3ab);color:#fff;font-weight:800;font-size:1.25rem;padding:8px 20px;border-radius:12px;margin:6px 0 14px}

/* cart */
.voc-cart{background:#fff;border:1px solid #e6efec;border-radius:18px;padding:22px;box-shadow:0 12px 34px rgba(31,92,85,.06)}
.voc-cart-row{display:grid;grid-template-columns:72px 1fr 96px 110px 42px;align-items:center;gap:14px;padding:14px 0;border-bottom:1px solid #eef4f2}
.voc-cart-row:last-of-type{border-bottom:0}
.voc-cart-img{width:72px;height:72px;object-fit:cover;border-radius:12px;border:1px solid #eef4f2}
.voc-cart-info h4{font-size:1rem;margin:0 0 4px;color:#123f3a}
.voc-cart-price{color:#5f7873;font-size:.9rem}
.voc-cart-qty{margin:0}
.voc-cart-qty input{width:100%;padding:8px;border:1px solid #d7e6e2;border-radius:10px;text-align:center}
.voc-cart-line{font-weight:800;color:#14524b;text-align:center}
.voc-cart-remove{border:0;background:#fdecea;color:#c0392b;width:36px;height:36px;border-radius:10px;cursor:pointer}
.voc-cart-remove:hover{background:#f9d7d2}
.voc-cart-total{display:flex;justify-content:space-between;align-items:center;padding-top:18px;margin-top:6px;font-size:1.15rem}
.voc-cart-total b{color:#14524b;font-size:1.35rem}

/* checkout */
.voc-checkout-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.voc-checkout-summary,.voc-checkout-form{background:#fff;border:1px solid #e6efec;border-radius:18px;padding:24px;box-shadow:0 12px 34px rgba(31,92,85,.06)}
.voc-checkout-summary h4,.voc-checkout-form h4{color:#123f3a;margin:0 0 16px;font-weight:800}
.voc-sum-row{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px dashed #e9f1ee;color:#3f5b56}
.voc-sum-total{display:flex;justify-content:space-between;align-items:center;padding-top:14px;margin-top:6px;font-weight:800;color:#14524b}
.voc-sum-total b{font-size:1.25rem}
.voc-bank-note{margin-top:20px;background:#f3faf8;border:1px solid #d9efe9;border-radius:14px;padding:16px}
.voc-bank-note h5{color:#14524b;margin:0 0 8px;font-weight:800}
.voc-bank-note p{color:#4a635e;font-size:.9rem;margin-bottom:10px}
.voc-bank-list{list-style:none;padding:0;margin:0 0 8px}
.voc-bank-list li{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px dashed #dcece8;font-size:.9rem}
.voc-bank-list li span{color:#6a827d}
.voc-bank-list li b{color:#123f3a}
.voc-bank-hint{color:#6a827d;font-size:.82rem;display:block}
.voc-field{margin-bottom:15px}
.voc-field label{display:block;font-weight:700;color:#345;margin-bottom:6px;font-size:.9rem}
.voc-field input,.voc-field textarea{width:100%;padding:11px 13px;border:1px solid #d7e6e2;border-radius:11px;background:#fbfdfc;transition:.2s}
.voc-field input:focus,.voc-field textarea:focus{outline:0;border-color:#34b3ab;box-shadow:0 0 0 3px rgba(52,179,171,.15)}
.w-100{width:100%}

/* order confirm */
.voc-order-confirm{background:#fff;border:1px solid #e6efec;border-radius:20px;padding:38px 28px;text-align:center;box-shadow:0 14px 40px rgba(31,92,85,.07)}
.voc-order-check{font-size:64px;color:#2ecc9b;margin-bottom:10px}
.voc-order-confirm h3{color:#123f3a;font-weight:800}
.voc-order-msg{color:#4a635e;max-width:520px;margin:10px auto 20px;line-height:1.9}
.voc-order-items{max-width:460px;margin:0 auto;text-align:start}
.voc-order-actions{display:flex;gap:10px;justify-content:center;margin-top:24px;flex-wrap:wrap}

/* account orders */
.voc-order-block{border:1px solid #e6efec;border-radius:14px;padding:16px;margin-bottom:16px;background:#fff}
.voc-order-block__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.voc-order-block__head b{color:#123f3a}
.voc-order-date{color:#8298; color:#7c948f;font-size:.82rem;margin-inline-start:10px}
.voc-order-block__foot{display:flex;justify-content:space-between;padding-top:12px;margin-top:6px;border-top:1px dashed #e9f1ee;font-weight:800;color:#14524b}
.voc-chip--cancel{background:#fdecea;color:#c0392b}

/* navbar cart button */
.voc-cart-btn{position:relative;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:12px;color:#14524b;background:#eef7f5;text-decoration:none;transition:.2s}
.voc-cart-btn:hover{background:#dcefeb;color:#0f3f39}
.voc-cart-badge{position:absolute;top:-5px;inset-inline-end:-5px;background:#e8583a;color:#fff;font-size:11px;font-weight:800;min-width:19px;height:19px;border-radius:999px;display:flex;align-items:center;justify-content:center;padding:0 5px}

@media (max-width:768px){
  .voc-checkout-grid{grid-template-columns:1fr}
  .voc-cart-row{grid-template-columns:56px 1fr 70px;grid-template-areas:"img info line" "img qty remove";gap:10px}
  .voc-cart-img{grid-area:img}.voc-cart-info{grid-area:info}.voc-cart-line{grid-area:line;text-align:end}
  .voc-cart-qty{grid-area:qty}.voc-cart-remove{grid-area:remove;justify-self:end}
}

/* ============================================================
   HERO — on phones the glass card sat tight under the sticky
   navbar; drop it down a little for breathing room.
   ============================================================ */
@media (max-width: 767px) {
  .sec-one .voc-hero-glass-card { margin-top: 52px !important; }
}
