@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --brand: #0b3d3af7;
  --brand-dark: #f59e0b;
  --brand-light: #efecfe;
  --ink: #1f2430;
  --muted: #6b7280;
  --line: #e8e8ee;
  --bg: #f8f5ef;
  --white: #ffffff;
  --teal:      #0b3d3a;
  --teal-mid:  #145c57;
  --teal-soft: #1e7a73;
  --saffron:   #e8952a;
  --saff-lt:   #fdf0dc;
  --saff-pale: #fffaf2;
  --paper:     #f8f5ef;
  --white:     #ffffff;
  --ink:       #1a1a1a;
  --ink-soft:  #3d3d3d;
  --muted:     #7a7a7a;
  --border:    #efecfe;
  --mint:      #d4ede9;

  --font-display: "Fira Sans", sans-serif;
  --font-body:    "Arimo", sans-serif;
  --font-mono:    "Roboto", sans-serif;

  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-primary: var(--teal);
  --bs-primary-rgb: 11, 61, 58;
  --bs-link-color: var(--teal);
  --bs-link-color-rgb: 11, 61, 58;
  --bs-link-hover-color: var(--teal-soft);
  --bs-border-color: var(--border);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, .font-display { font-family: var(--font-display); }
.app-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11,61,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .3s;
  padding-top: .25rem;
  padding-bottom: .25rem;
}
.app-header .text-muted {color: var(--white) !important;}
.brand-mark {
  width: 180px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-right: 50px;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 3px;
}
.pill-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  background: rgb(245, 158, 11);
  border-radius: 10px;
  padding: 4px;
}
.pill-nav-link {
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.pill-nav-link:hover { color: var(--ink); }
.pill-nav-link.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(15, 15, 25, 0.12);
}

.btn {
  transition: all .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 149, 42, 0.35);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

.badge.text-bg-success  { background: #e6f7ec !important; color: #1a7f4b !important; }
.badge.text-bg-warning  { background: #fff3e0 !important; color: #ad6a05 !important; }
.badge.text-bg-primary  { background: #e9edff !important; color: #3949ce !important; }
.badge.text-bg-info     { background: #e6f4fb !important; color: #196f9c !important; }
.badge.text-bg-secondary{ background: #eef0f3 !important; color: #6b7280 !important; }
.badge.text-bg-danger   { background: #fdecec !important; color: #c8352c !important; }
.badge.text-bg-purple   { background: #f1ecfe !important; color: #7c3aed !important; }
.badge { font-weight: 600; font-size: 1rem; padding: 0.35em 0.7em; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow:0 8px 32px rgba(11,61,58,0.1); transform:translateY(-3px); }

.stat-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}
.stat-card .stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.6rem;
}
.stat-card .stat-value { font-size: 1.5rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-card .stat-label { font-size: 0.72rem; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.row-card, .info-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.row-card .list-row {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #f1f2f5;
  text-decoration: none;
  color: inherit;
  display: block;
}
.row-card .list-row:last-child { border-bottom: none;}
.row-card .list-row:hover { background: #fafafd;}
.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; }
.entity-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.entity-avatar {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.entity-note {
  background: #f7f7fb;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  color: #4b5060;
}
.entity-meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: #4b5060;
}
.entity-meta-row i { color: #9296a3; width: 14px; }

.kanban-scroll {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
}
.kanban-col {
  flex: 0 0 250px;
  width: 250px;
}
.kanban-col-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0 0.1rem;
}
.kanban-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.kanban-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.83rem;
}
.kanban-card .cand-name { font-weight: 600; }
.kanban-card select { font-size: 0.76rem; padding: 0.2rem 0.4rem; }
.call-timer {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1.6rem;
  min-width: 4.5ch;
}
.outcome-btn, .rating-btn {
  border: 1px solid #cbd1db;
  background: #fff;
  color: #475569;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
}
.outcome-btn.active-outcome, .rating-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.quick-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: #3b3f4a;
  text-decoration: none;
  white-space: nowrap;
}
.quick-chip:hover { background: var(--brand-light); color: var(--brand-dark); }
.quick-chip i { color: var(--brand); margin-right: 4px; }

.followup-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.75rem 1rem;
}

.empty-state {
  border: 1px dashed #cbd1db;
  border-radius: 10px;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
}
.icon-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.icon-btn:hover { background: #f5f5fa; color: var(--ink); }
.icon-btn.text-danger:hover { background: #fdecec; }

.modal-body { max-height:400px; overflow-y: scroll; background: var(--white); }
.modal-header { background: var(--brand);}
.modal-title { color:  var(--white);}
.fw-semibold {
    font-size: 20px;
}

.active>.page-link, .page-link.active {
    color: var(--white);
    background-color: var(--brand);
    border-color: var(--brand);
}

.page-link {
    color: var(--brand);
}
.form-label {
    font-weight: 600;
}


.btn-warning {
  background: var(--brand-dark);
}

a {color: var(--brand-dark);     text-decoration: none;}

.page-link:hover {
    z-index: 2;
    color: var(--white);
    background-color: var(--brand);
    border-color: var(--brand);
}
.text-dark {
    color: var(--brand) !important;
}
.list-unstyled i, .entity-meta-row i { color: var(--brand-dark);}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--white);
    background-color: var(--brand);
}

.form-check-input[type=radio] {
    border-radius: 0;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
}

.form-check-input:checked {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.form-control {background: var(--white);}
.form-select {background-color: #fff;}


.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0px;
}
.section-pad { padding: 100px 0; }
@media (max-width: 575.98px) { .section-pad { padding: 64px 0; } }

.sr { opacity:0; transform:translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.sr.in { opacity:1; transform:translateY(0); }
.sr-delay-1 { transition-delay:.1s; }
.sr-delay-2 { transition-delay:.2s; }
.sr-delay-3 { transition-delay:.3s; }
.sr-delay-4 { transition-delay:.4s; }

.sr-blur {
  filter: blur(10px);
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transition: opacity .8s ease, transform .9s cubic-bezier(.25,.8,.25,1), filter 1s ease;
}
.sr-blur.in { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .sr { opacity:1; transform:none; transition:none; }
  .sr-blur { opacity:1; transform:none; filter:none; transition:none; }
}

.btn-primary-custom, .btn-ghost-custom, .nav-cta-btn, .resolution-badge,
.prog-cta-btn, .enrol-btn {
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  border-radius: 10px;
  font-weight: 600;
  transition: all .2s;
}
.btn-primary-custom {
  background: var(--saffron);
  color: var(--teal);
  border: none;
  padding: 12px 20px;
  font-size: 14px;
}
.btn-primary-custom:hover { background:#f5a83c; color:var(--teal); transform:translateY(-2px); box-shadow:0 8px 24px rgba(232,149,42,0.35); }
.btn-pulse { animation: btnPulseGlow 2.4s ease-in-out infinite; }
.btn-pulse:hover { animation-play-state: paused; }
@keyframes btnPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,149,42,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(232,149,42,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-pulse { animation:none; } }
.btn-ghost-custom {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
}
.btn-ghost-custom:hover { border-color: rgba(255,255,255,0.55); color:#fff; }


#mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.navbar-brand img {
  width: 180px;
}

  .navbar-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.3px;
}
.navbar-brand span { color: var(--saffron); }
#mainNav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .2s;
}
#mainNav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.1); }
.nav-cta-btn {
  background: var(--saffron);
  color: var(--teal) !important;
  padding: 9px 20px;
  font-size: 13px;
}
.nav-cta-btn:hover { background: #f5a83c; transform:translateY(-2px); box-shadow:0 6px 16px rgba(232,149,42,0.35); }
.navbar-toggler { border-color: rgba(255,255,255,0.25); padding: 6px 10px; float: right; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(232,149,42,0.35); }
.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%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

#hero, #inner-hero {
  background: var(--teal);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

#inner-hero {
  min-height: 500px;
}

#hero::before, #inner-hero::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events:none;
}
#hero::after, #inner-hero::after {
  content:'';
  position:absolute; bottom:-80px; right:-80px;
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(232,149,42,0.15) 0%, transparent 70%);
  pointer-events:none;
}
#hero .container, #inner-hero .container { padding-top: 40px; padding-bottom: 60px; }

.hero-badge {
  background: rgba(232,149,42,0.15);
  border: 1px solid rgba(232,149,42,0.3);
  border-radius: 20px;
  padding: 5px 12px;
}
.hero-badge .dot {
  width:7px; height:7px;
  background: var(--saffron);
  border-radius:50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.hero-badge span:last-child {
  font-size:11px; font-weight:600; color:var(--saffron);
  letter-spacing:1px; text-transform:uppercase;
}

.hero-h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hero-h1 .underline-word {
  position: relative;
  display: inline-block;
  color: var(--saffron);
}
.hero-h1 .underline-word::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:3px;
  background: var(--saffron);
  border-radius:2px;
  animation: drawLine 1.2s ease 0.8s forwards;
}
@keyframes drawLine { to { width:100%; } }

.hero-body { font-size:14px; color:rgba(255,255,255,0.72); line-height:1.5; max-width:650px; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px; font-weight:700; color: var(--white); line-height:1;
}
.hero-stat .num span { color: var(--saffron); }
.hero-stat p { font-size:12px; color:rgba(255,255,255,0.5); margin-top:4px; line-height:1.4; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { font-family:var(--font-display); font-size:22px; margin-bottom:6px; }
.hero-card .sub { font-size:13px; margin-bottom:24px; }

.enrol-input:focus, .enrol-select:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 0 0 .2rem rgba(232,149,42,0.2);
}

.enrol-select option { background: var(--teal); color:#fff; }
.enrol-btn { background: var(--saffron); color: var(--teal); border:none; padding:12px; font-size:14px; width:100%; }
.enrol-btn:hover { background:#f5a83c; color:var(--teal); }
.enrol-btn:disabled { opacity:.7; cursor:not-allowed; transform:none; }
.enrol-note {font-size:12px; text-align:center; line-height:1.6; }

.enrol-input.is-invalid, .enrol-select.is-invalid { border-color:#ef8a72; box-shadow:0 0 0 .2rem rgba(239,138,114,0.18); }
.enrol-input.is-valid, .enrol-select.is-valid { border-color:#5fd0b8; }
.enrol-form .field-msg {
  display:none;
  font-size:11px;
  line-height:1.5;
  margin-top:-6px;
  padding-left:2px;
}
.enrol-form .field-msg.show { display:block; }
.enrol-form .field-msg.err { color:#ffb4a1; }
.enrol-form .field-msg.ok { color:#8fe3d1; }
.enrol-form .field-wrap { display:flex; flex-direction:column; gap:6px; }

/* Enrolment form — confirmation state */
.enrol-confirm { display:none; text-align:center; padding:14px 6px 4px; }
.enrol-confirm.show { display:block; animation: enrolFadeUp .5s ease; }
.enrol-confirm .check-badge {
  width:56px; height:56px; border-radius:50%;
  background: rgba(232,149,42,0.15);
  border: 1.5px solid rgba(232,149,42,0.4);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--saffron);
  margin:0 auto 18px;
  animation: checkPop .55s cubic-bezier(.34,1.56,.64,1) .1s both;
}
@keyframes checkPop {
  0% { transform: scale(0); opacity:0; }
  60% { transform: scale(1.15); opacity:1; }
  100% { transform: scale(1); }
}
.enrol-confirm h4 { font-family:var(--font-display); font-size:23px; color:#fff; margin-bottom:8px; }
.enrol-confirm p { font-size:13px; color:rgba(255,255,255,0.6); line-height:1.75; margin-bottom:20px; }
.enrol-confirm .enrol-again-btn {
  background:transparent; color:rgba(255,255,255,0.85); border:1.5px solid rgba(255,255,255,0.25);
  padding:11px 22px; border-radius:10px; font-size:13px; font-weight:600; font-family:var(--font-body);
  transition:.2s;
}
.enrol-confirm .enrol-again-btn:hover { border-color:rgba(255,255,255,0.55); color:#fff; }
@keyframes enrolFadeUp { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }


.ticker { background: var(--saffron); padding:10px 0; overflow:hidden; }
.ticker-inner { display:flex; white-space:nowrap; width:max-content; animation: ticker 30s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-size:12px; font-weight:700; color:var(--teal);
  letter-spacing:0.5px; text-transform:uppercase; padding:0 40px;
}
.ticker-item::after { content:'·'; margin-left:40px; }

.trust-icon {
  width:44px; height:44px;
  background: var(--saff-lt);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.trust-item:hover .trust-icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); background: var(--mint); }
.trust-item h4 { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--teal); line-height:1; margin:0; }
.trust-item p { font-size:12px; color:var(--muted); margin:2px 0 0; }

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.problem-card:hover { box-shadow:0 8px 32px rgba(11,61,58,0.1); transform:translateY(-3px); }
.problem-emoji { font-size:32px; margin-bottom:14px; }
.problem-card h3 { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--teal); margin-bottom:10px; line-height:1.3; }
.problem-card p { font-size:14px; color:var(--ink-soft); line-height:1.75; margin:0; }

.problem-resolution { background:var(--teal); border-radius:20px; padding:40px 48px; }
.problem-resolution h3 { font-family:var(--font-display); font-size:30px; color:var(--white); font-weight:700; line-height:1.3; margin-bottom:12px; }
.problem-resolution p { font-size:15px; color:rgba(255,255,255,0.65); line-height:1.7; margin:0; }
.resolution-badge {
  background: var(--saffron); color: var(--teal); border:none;
  font-size:13px; padding:12px 28px; white-space:nowrap;
}
.resolution-badge:hover { background:#f5a83c; color:var(--teal); }

.audience-tabs {
  --bs-nav-pills-link-active-bg: var(--teal);
  --bs-nav-pills-link-active-color: #fff;
}
.audience-tabs .nav-link {
  font-size:13px; font-weight:600; padding:10px 22px; border-radius:8px;
  border:1.5px solid var(--border); color:var(--muted); font-family:var(--font-body);
  transition:.2s;
}
.audience-tabs .nav-link:hover { background:var(--teal); border-color:var(--teal); color:#fff; }
.audience-tabs .nav-link.active { border-color:var(--teal); }

.aud-text h3 { font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--teal); margin-bottom:14px; line-height:1.2; }
.aud-text p { font-size:15px; color:var(--ink-soft); line-height:1.8; }
.aud-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.aud-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-soft); line-height:1.6; }
.aud-list li::before {
  content:'✓'; background:var(--teal); color:var(--saff-pale);
  font-size:11px; font-weight:700; width:20px; height:20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;
}
.aud-visual { background:var(--paper); border:1px solid var(--border); border-radius:20px; padding:32px; height:100%; }
.aud-visual .aud-icon { font-size:48px; margin-bottom:16px; }
.aud-visual h4 { font-family:var(--font-display); font-size:20px; color:var(--teal); margin-bottom:10px; }
.aud-visual p { font-size:13.5px; color:var(--ink-soft); line-height:1.75; }
.aud-pill-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.aud-pill { font-size:11px; font-weight:600; padding:5px 12px; border-radius:20px; background:var(--mint); color:var(--teal); letter-spacing:0.3px; }
.aud-pill.orange { background:var(--saff-lt); color:#7a4a10; }

.prog-card { background:var(--white); border:1px solid var(--border); border-radius:20px; overflow:hidden; transition:box-shadow .25s, transform .25s; height:100%; display:flex; flex-direction:column; }
.prog-card:hover { box-shadow:0 10px 40px rgba(11,61,58,0.12); transform:translateY(-4px); }
.prog-card-header { padding:28px 28px 20px; border-bottom:1px solid var(--border); background:var(--mint); }
.prog-card-header .track-label { font-family:var(--font-mono); font-size:9px; letter-spacing:2.5px; text-transform:uppercase; color:var(--saffron); margin-bottom:10px; display:block; }
.prog-card-header h3 { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--teal); line-height:1.2; margin-bottom:8px; }
.prog-card-header p { font-size:13.5px; color:var(--muted); line-height:1.65; margin:0; }
.prog-card.featured { border-color:#1e7a73; box-shadow:0 0 0 3px rgba(30,122,115,0.12); }
.prog-card.featured .prog-card-header { background:var(--teal); border-bottom:1px solid rgba(255,255,255,0.1); }
.prog-card.featured .track-label { color:var(--saffron); }
.prog-card.featured h3 { color:#fff; }
.prog-card.featured .prog-card-header p { color:rgba(255,255,255,0.6); }
.prog-card.featured .prog-footer { background:rgba(11,61,58,0.05); }

.prog-modules { padding:20px 28px; flex:1; }
.prog-module { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); align-items:flex-start; transition: transform .2s; }
.prog-module:hover { transform: translateX(4px); }
.prog-modules > .prog-module:last-child,
.prog-modules .row > .col:last-child .prog-module { border-bottom:none; }
.prog-module-num { font-family:var(--font-mono); font-size:10px; color:var(--muted); width:28px; flex-shrink:0; margin-top:2px; transition: color .2s, transform .3s cubic-bezier(.34,1.56,.64,1); }
.prog-module:hover .prog-module-num { color:var(--saffron); transform: scale(1.2); }
.prog-module-info h5 { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.prog-module-info p { font-size:12px; color:var(--muted); line-height:1.5; margin:0; }
.module-tag-sm { display:inline-block; font-size:9px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:2px 8px; border-radius:20px; margin-top:5px; }
.t-ai   { background:#e8f0fe; color:#1a56d6; }
.t-soft { background:var(--mint); color:var(--teal-soft); }
.t-cls  { background:#fff0e8; color:#a04020; }
.t-eq   { background:#f0e8ff; color:#5c20a0; }
.t-lead { background:#fce8f3; color:#9c2b6e; }
.t-dig  { background:var(--saff-lt); color:#7a5010; }

.prog-footer { padding:20px 28px; background:var(--paper); display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); }
.prog-duration { font-size:13px; color:var(--muted); }
.prog-price { font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--teal); }
.prog-price span { font-size:13px; font-weight:400; color:var(--muted); }
.prog-cta-btn { display:block; background:var(--teal); color:var(--white); text-align:center; padding:14px 28px; font-size:13px; margin:0 28px 24px; border:none; transition: all .25s; }
.prog-cta-btn:hover { background:var(--teal-soft); color:var(--white); transform:translateY(-2px); box-shadow:0 8px 20px rgba(11,61,58,0.25); }
.prog-cta-btn.saffron { background:var(--saffron); color:var(--teal); }
.prog-cta-btn.saffron:hover { background:#f5a83c; color:var(--teal); box-shadow:0 8px 24px rgba(232,149,42,0.35); }

.prog-card.full .prog-card-header { display:flex; flex-wrap:wrap; gap:24px; align-items:center; justify-content:space-between; }

#process { background: var(--teal); }
.process-steps { position:relative; }
@media (min-width:768px){
  .process-steps::before {
    content:''; position:absolute; top:50px; left:10%; right:10%; height:1px;
    background:rgba(255,255,255,0.15); z-index:0;
  }
}
.process-step { position:relative; z-index:1; }
.step-dot {
  width:56px; height:56px; background:rgba(255,255,255);
  border:1.5px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:22px;
  margin:0 auto 20px; transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s;
}
.process-step:hover .step-dot { background:var(--saffron); border-color:var(--saffron); transform: scale(1.12) rotate(8deg); }
.process-step h4 { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--white); margin-bottom:8px; }
.process-step p { font-size:12.5px; color:rgba(255,255,255,0.55); line-height:1.65; margin:0; }

#curriculumAccordion {
  --bs-accordion-bg: var(--paper);
  --bs-accordion-border-color: var(--border);
  --bs-accordion-border-radius: 14px;
  --bs-accordion-inner-border-radius: 13px;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(232,149,42,0.2);
  --bs-accordion-active-bg: var(--white);
  --bs-accordion-active-color: var(--teal);
  --bs-accordion-color: var(--ink);
}
#curriculumAccordion .accordion-item { border-radius:14px; overflow:hidden; margin-bottom:12px; }
#curriculumAccordion .accordion-item:last-child { margin-bottom:0; }
#curriculumAccordion .accordion-button {
  gap:16px; padding:22px 24px; font-family:var(--font-body);
}
#curriculumAccordion .accordion-button:not(.collapsed) { background:var(--white); box-shadow:none; }
#curriculumAccordion .accordion-button:hover { background:var(--white); }
.acc-number { font-family:var(--font-mono); font-size:10px; color:var(--muted); width:24px; flex-shrink:0; }
.acc-icon { font-size:22px; flex-shrink:0; }
.acc-info h4 { font-size:16px; font-weight:700; color:var(--teal); margin-bottom:3px; }
.acc-info p { font-size:12px; color:var(--muted); margin:0; }
.acc-duration {
  font-size:11px; font-weight:600; color:var(--teal-soft); background:var(--mint);
  padding:4px 12px; border-radius:20px; white-space:nowrap; margin-left:auto; margin-right:12px;
  font-family: var(--font-body);
}
.acc-topic { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--ink-soft); line-height:1.6; }
.acc-topic::before { content:'→'; color:var(--saffron); font-weight:700; flex-shrink:0; margin-top:1px; }


.test-card { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:28px; transition:box-shadow .25s; height:100%; }
.test-card:hover { box-shadow:0 8px 28px rgba(11,61,58,0.09); }
.test-stars { color:var(--saffron); font-size:14px; letter-spacing:1px; margin-bottom:14px; }
.test-quote { font-family:var(--font-display); font-size:17px; font-style:italic; color:var(--ink); line-height:1.6; margin-bottom:20px; }
.test-avatar { width:40px; height:40px; border-radius:50%; background:var(--mint); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.test-name { font-size:13px; font-weight:700; color:var(--teal); }
.test-role { font-size:11px; color:var(--muted); margin-top:2px; }

.test-featured { background:var(--teal); border-radius:20px; padding:40px 48px; }
.test-featured-quote { font-family:var(--font-display); font-size:24px; font-style:italic; color:var(--white); line-height:1.5; margin-bottom:20px; }
.test-featured .test-name { color:var(--saff-lt); font-size:14px; }
.test-featured .test-role { color:rgba(255,255,255,0.5); }
.test-big-quote { font-family:var(--font-display); font-size:120px; color:rgba(255,255,255,0.08); line-height:0.8; user-select:none; }


.about-text h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,44px); font-weight:700; color:var(--teal); line-height:1.2; margin-bottom:20px; }
.about-text p { font-size:15px; color:var(--ink-soft); line-height:1.8; }
.about-value-icon { width:40px; height:40px; background:var(--mint); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.about-value h5 { font-size:14px; font-weight:700; color:var(--teal); margin-bottom:3px; }
.about-value p { font-size:13px; color:var(--muted); line-height:1.6; margin:0; }

.about-visual { background:var(--paper); border:1px solid var(--border); border-radius:24px; padding:36px; }
.about-stat { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:20px; text-align:center; height:100%; }
.about-stat .big-num { font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--teal); line-height:1; margin-bottom:6px; }
.about-stat .big-num em { color:var(--saffron); font-style:normal; }
.about-stat p { font-size:12px; color:var(--muted); line-height:1.5; margin:0; }
.about-founder { background:var(--teal); border-radius:14px; padding:20px; }
.founder-icon { width:52px; height:52px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.founder-name { font-size:15px; font-weight:700; color:var(--white); margin-bottom:3px; }
.founder-title { font-size:12px; color:rgba(255,255,255,0.55); margin-bottom:6px; }
.founder-note { font-size:13px; color:rgba(255,255,255,0.75); line-height:1.6; font-style:italic; margin:0; }


.faq-item { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:24px; transition:.2s; height:100%; }
.faq-item:hover { border-color:var(--teal-soft); }
.faq-item h4 { font-size:15px; font-weight:700; color:var(--teal); margin-bottom:10px; line-height:1.35; }
.faq-item p { font-size:13.5px; color:var(--ink-soft); line-height:1.75; margin:0; }


.faq-accordion { max-width:840px; margin:0 auto; }
.faq-accordion .accordion-item {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px !important;
  overflow:hidden;
  margin-bottom:14px;
}
.faq-accordion .accordion-item:last-child { margin-bottom:0; }
.faq-accordion .accordion-button {
  font-family:var(--font-body);
  font-size:15.5px;
  font-weight:700;
  color:var(--teal);
  background:var(--white);
  padding:22px 24px;
  box-shadow:none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background:var(--saff-lt);
  color:var(--teal);
  box-shadow:none;
}
.faq-accordion .accordion-button:focus { box-shadow:0 0 0 .2rem rgba(232,149,42,0.25); border-color:transparent; }
.faq-accordion .accordion-button::after {
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230b3d3a' stroke-linecap='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  width:14px; height:14px; background-size:14px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), background-image .2s;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e8952a' stroke-linecap='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:hover::after { transform: translateY(2px); }
.faq-accordion .accordion-button:not(.collapsed):hover::after { transform: rotate(-180deg) translateY(-2px); }
.faq-accordion .accordion-body {
  font-size:13.5px;
  color:var(--ink-soft);
  line-height:1.75;
}


.compare-wrap { background:var(--white); border:1px solid var(--border); border-radius:20px; overflow:hidden; margin-top:32px; }
.compare-scroll { overflow-x:auto; }
.compare-table { margin:0; min-width:640px; }
.compare-table th, .compare-table td { padding:16px 20px; vertical-align:middle; border-color:var(--border); }
.compare-table thead th {
  font-family:var(--font-body);
  font-size:11.5px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--muted);
  background:var(--paper);
  border-bottom:2px solid var(--border);
  text-align:center;
}
.compare-table thead th.col-feature { text-align:left; color:var(--teal); }
.compare-table thead th.col-highlight { background:var(--teal); }
.compare-table .prog-name { display:block; font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--teal); text-transform:none; letter-spacing:0; }
.compare-table thead th.col-highlight .prog-name { color:#fff; }
.compare-table .badge-pop {
  display:inline-block; margin-top:5px; font-family:var(--font-mono); font-size:9px; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--saffron); background:rgba(232,149,42,0.15); padding:3px 9px; border-radius:10px;
}
.compare-table tbody th {
  font-size:13.5px; font-weight:600; color:var(--ink); background:var(--white); text-align:left;
}
.compare-table tbody td { text-align:center; background:var(--white); }
.compare-table tbody td.col-highlight { background:var(--mint); }
.compare-table .yes { color:#1e7a73; font-weight:700; font-size:16px; }
.compare-table .no { color:#c8beb3; font-size:16px; }
.compare-table .price-cell { font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--teal); }
.compare-table .price-cell span { display:block; font-family:var(--font-body); font-weight:400; font-size:11px; color:var(--muted); }
@media (max-width:767.98px){
  .compare-table { font-size:12.5px; }
  .compare-table th, .compare-table td { padding:12px 12px; }
  .compare-table .prog-name { font-size:15px; }
}

#cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 50%, #0f4a45 100%);
  padding: 120px 0; text-align:center; position:relative; overflow:hidden;
}
#cta::before { content:''; position:absolute; top:-100px; left:-100px; width:400px; height:400px; background:radial-gradient(circle, rgba(232,149,42,0.18) 0%, transparent 70%); }
#cta::after { content:''; position:absolute; bottom:-100px; right:-100px; width:500px; height:500px; background:radial-gradient(circle, rgba(232,149,42,0.12) 0%, transparent 70%); }
#cta .container { position:relative; z-index:2; max-width:680px; }
#cta h2 { font-family:var(--font-display); font-size:clamp(34px,5vw,58px); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:20px; }
#cta h2 em { color:var(--saffron); font-style:normal; }
#cta p.lead-copy { font-size:16px; color:rgba(255,255,255,0.65); line-height:1.75; margin-bottom:20px; }
.cta-micro { font-size:12px; color:rgba(255,255,255,0.4); margin-top:20px; line-height:1.7; }


footer { background:#071412; padding:64px 0 32px; }
.footer-brand h3 { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--white); margin-bottom:12px; }
.footer-brand h3 span { color:var(--saffron); }
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.75; margin-bottom:20px; }
.footer-contact-item { display:flex; align-items:center; gap:10px; font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:8px; transition: color .25s; }
.footer-contact-item .ic { font-size:15px; display:inline-block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.footer-contact-item:hover { color:rgba(255,255,255,0.85); }
.footer-contact-item:hover .ic { transform: scale(1.25) rotate(-8deg); }
.footer-col h4 { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:20px; }
.footer-col ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:13px; color:rgba(255,255,255,0.55); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:28px; font-size:12px; color:rgba(255,255,255,0.3); }
.footer-bottom a { color:rgba(255,255,255,0.4); text-decoration:none; }
.footer-bottom a:hover { color:rgba(255,255,255,0.7); }


@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(0deg); } }
@keyframes driftBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px, 18px) scale(1.08); } }
#hero::after { animation: driftBlob 16s ease-in-out infinite; }
.hero-photo-float {
  position: absolute;
  top: -58px;
  left: -140px;
  width: 172px;
  z-index: 4;
  animation: heroFloat 6.5s ease-in-out infinite;
}
.hero-photo-float .frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 55px rgba(0,0,0,0.4);
}
.hero-photo-float img { width:100%; height:172px; object-fit:cover; display:block; }
.hero-photo-badge {
  position: absolute;
  bottom: -16px; right: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  text-align: center;
  min-width: 96px;
  line-height: 1;
}
.hero-photo-badge .badge-num { display:block; font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--teal); }
.hero-photo-badge .badge-label { display:block; font-size:9px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-top:3px; }


.btn-primary-custom, .prog-cta-btn.saffron, .resolution-badge {
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before, .prog-cta-btn.saffron::before, .resolution-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
  pointer-events: none;
}
.btn-primary-custom:hover::before, .prog-cta-btn.saffron:hover::before, .resolution-badge:hover::before {
  left: 130%;
}

.arrow-ic { display:inline-block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.btn:hover .arrow-ic, a:hover .arrow-ic { transform: translateX(5px); }
.btn:active .arrow-ic { transform: translateX(8px); }


.aud-visual { padding: 0; overflow: hidden; }
.aud-visual-photo { position: relative; overflow: hidden; }
.aud-visual-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.aud-visual:hover .aud-visual-photo img { transform: scale(1.08); }
.aud-visual-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,58,0) 55%, rgba(7,20,18,0.75) 100%);
}
.aud-icon-chip {
  position: absolute; bottom: 14px; left: 20px;
  width: 42px; height: 42px;
  background: var(--saffron);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  z-index: 2;
}
.aud-visual-body { padding: 26px 32px 32px; }
.aud-visual-body h4 { font-family:var(--font-display); font-size:20px; color:var(--teal); margin-bottom:10px; }
.aud-visual-body p { font-size:13.5px; color:var(--ink-soft); line-height:1.75; }


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: box-shadow .3s;
}
.gallery-tile.large { grid-column: span 2; grid-row: span 2; }
.gallery-tile:hover { box-shadow: 0 16px 40px rgba(11,61,58,0.25); }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,58,0) 45%, rgba(7,20,18,0.85) 100%);
  pointer-events: none;
}
.gallery-caption { position: absolute; left:0; right:0; bottom:0; padding:16px; z-index:2; }
.gallery-caption h5 { color:#fff; font-size:14px; font-weight:700; margin:0 0 2px; font-family:var(--font-body); }
.gallery-tile.large .gallery-caption h5 { font-size:17px; }
.gallery-caption p { color:rgba(255,255,255,0.72); font-size:11.5px; margin:0; line-height:1.4; }
.gallery-expand {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-tile:hover .gallery-expand { opacity: 1; }
@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-tile.large { grid-column: span 2; grid-row: span 1; }
}
#galleryLightbox .modal-content { background:transparent; border:none; }
#galleryLightbox .modal-body { padding:0; position:relative; }
#galleryLightbox img { width:100%; border-radius:14px; display:block; }
#galleryLightbox .lightbox-caption {
  position:absolute; left:0; right:0; bottom:0;
  padding:20px 24px; border-radius:0 0 14px 14px;
  background: linear-gradient(180deg, rgba(7,20,18,0) 0%, rgba(7,20,18,0.92) 100%);
}
#galleryLightbox .lightbox-caption h5 { color:#fff; font-family:var(--font-display); font-size:20px; margin:0 0 4px; }
#galleryLightbox .lightbox-caption p { color:rgba(255,255,255,0.72); font-size:13px; margin:0; }
#galleryLightbox .btn-close { position:absolute; top:-40px; right:0; filter:invert(1); opacity:0.85; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo-float, #hero::after { animation: none; }
  .aud-visual-photo img, .gallery-tile img, .btn-primary-custom::before, .prog-cta-btn.saffron::before, .resolution-badge::before { transition: none; }
}

.navbar-collapse {
    margin-top: 0px;
}

img.footer-logo {
  width: 200px;
}

.main-heading {
  font-family:var(--font-display); 
  font-size:clamp(22px,4vw,35px); 
  font-weight:700; 
  color:var(--teal); 
  line-height:1.2;
}
.sub-heading {
  font-size:14px; 
  color:var(--muted); 
  line-height:1.4;}

  .sub-heading2 {
    font-family:var(--font-display); 
    font-size:clamp(24px,3vw,34px); 
    font-weight:700; 
    color:var(--teal); 
    line-height:1.2;}

    .sub-heading3 {color:rgba(232,149,42,0.9);}

    a { text-decoration: none; }


    .school-partner-logo h3 {
      font-size: 16px;
      text-align: center;
      border-top: 1px #ccc solid;
      padding-top: 20px;
    }

    .logos-more {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.problem-resolution {
    background: var(--teal);
    border-radius: 20px;
    padding: 40px 48px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.left { flex:1; }
 ul.icon-list{
      padding-left: 0;
}
.icon-list li{
      display: inline-block;
}
.icon-list li a {
  color: #fff;
  list-style: none;
  background: var(--teal);
  border-radius: 10%;
  padding: 7px;

  background-size: 35px 35px; 
  text-align: center;
}

.icon-list li a:hover{
 background: var(--saffron);
 color:#000;
}


#enrolFormWrap h4 {color: var(--saffron); font-size: 18px;}

@media (max-width: 991px) {
  #navMenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
  }
}

.field-wrap2 label {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.field-wrap2 .enrol-select[type="file"] {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d8dee2;
  border-radius: 8px;
  background-color: #fff;
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 14px;
  color: #8a9099;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-wrap2 .enrol-select[type="file"]:hover {
  border-color: #0f6f66;
}

.field-wrap2 .enrol-select[type="file"]:focus {
  outline: none;
  border-color: #0f6f66;
  box-shadow: 0 0 0 3px rgba(15, 111, 102, 0.15);
}

.field-wrap2 .enrol-select[type="file"]::file-selector-button {
  padding: 7px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: #0f6f66;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.field-wrap2 .enrol-select[type="file"]::file-selector-button:hover {
  background: #0c5950;
}

.field-wrap2 .enrol-select[type="file"]::-webkit-file-upload-button {
  padding: 7px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: #0f6f66;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Error message */
.field-wrap2 .field-msg.err {
  color: #d64545;
  font-size: 12.5px;
  margin-top: 4px;
}

.modal-dialog-scrollable .modal-body {
    background: #fff;
}
