.elementor-12775 .elementor-element.elementor-element-d3a2074{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-654771a *//* --------------------------------------------------------
   Global Reset & Architectural Framework
-------------------------------------------------------- */
.counselling-dashboard-section,
.counselling-dashboard-section * {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.counselling-dashboard-section {
  --font-sans: 'Reddit Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Modern Monochromatic Light Slate Tokens */
  --canvas-bg: #f8fafc;         /* Premium light grey backdrop canvas fill */
  --surface-white: #ffffff;     /* Pure high-contrast container panels */
  --brand-navy: #1e3a8a;        /* Deep institutional primary color anchor */
  --text-primary-ink: #0f172a;  /* High contrast dark ink for bold headers */
  --text-muted-slate: #475569;  /* Balanced body text color values */
  --border-subtle: #cbd5e1;     /* Distinct structural enclosure frame lines */
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  background-color: var(--canvas-bg);
  font-family: var(--font-sans);
  padding: clamp(3.5rem, 8vw, 7.5rem) 1.25rem;
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.dashboard-grid-container {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.25fr 1fr; /* Asymmetrical grid split maximizes tracking visibility */
  gap: 3rem;
  align-items: start;
}

/* --------------------------------------------------------
   Left Column Informational Layout Configurations
-------------------------------------------------------- */
.dashboard-info-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.portal-main-header {
  text-align: left;
  width: 100%;
}

.portal-badge-pill {
  display: inline-block;
  background-color: rgba(30, 58, 138, 0.05);
  border: 1px solid rgba(30, 58, 138, 0.15);
  color: var(--brand-navy);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

h2.portal-display-title {
  color: var(--brand-navy);
  font-size: clamp(32px, 4.8vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.portal-display-subheading {
  color: var(--text-muted-slate);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  font-weight: 500;
}

/* Bento Stack Core Blueprint Definitions */
.value-bento-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.bento-panel {
  background-color: var(--surface-white);
  border: 2px solid var(--border-subtle) !important;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--transition-fast);
  width: 100%;
}

.bento-panel:hover {
  border-color: var(--brand-navy) !important;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.05);
}

.panel-anchor-title {
  color: var(--text-primary-ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  text-align: left;
}

/* Perks Interactive List Layouts */
.perks-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
}

.full-width-perk {
  grid-column: span 2;
}

.perk-check {
  width: 20px;
  height: 20px;
  color: var(--brand-navy);
  background-color: rgba(30, 58, 138, 0.05);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-item span {
  color: var(--text-primary-ink);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
}

/* Timeline Pipeline Process Layouts */
.process-flow-pipeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pipeline-node {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.node-numeric-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--canvas-bg);
  border: 2px solid var(--border-subtle);
  color: var(--brand-navy);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.node-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  padding-top: 4px;
}

.node-meta h4 {
  color: var(--text-primary-ink);
  font-size: 17px;
  font-weight: 800;
}

.node-meta p {
  color: var(--text-muted-slate);
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 500;
}

/* --------------------------------------------------------
   Right Column: Sticky Form Frame Shell
-------------------------------------------------------- */
.dashboard-form-column {
  width: 100%;
}

.form-vault-frame {
  position: -webkit-sticky;
  position: sticky;
  top: 3.5rem;
  background-color: var(--surface-white);
  border: 2px solid var(--border-subtle) !important;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.03);
  width: 100%;
  transition: var(--transition-fast);
}

.form-vault-frame:hover {
  border-color: var(--brand-navy) !important;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.05);
}

.vault-headline-group {
  text-align: center;
  margin-bottom: 2rem;
}

.vault-main-title {
  color: var(--brand-navy);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.vault-sub-title {
  color: var(--text-muted-slate);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 340px;
  margin: 0 auto;
}

/* Embed Frame Region Locks */
.form-canvas-wrapper {
  width: 100%;
  max-width: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.form-canvas-wrapper iframe {
  width: 100% !important;
  height: auto;
  min-height: 350px;
  border: none !important;
  display: block;
  background: #ffffff;
}

/* --------------------------------------------------------
   Hardened Mobile Responsive Viewport Calibrations
-------------------------------------------------------- */
@media (max-width: 1024px) {
  .dashboard-grid-container {
    grid-template-columns: 1fr; /* Formats layout tracking grids into a continuous column */
    gap: 3rem;
  }

  .form-vault-frame {
    position: static; /* Disables side positioning rules to prevent viewport breaking */
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 650px) {
  .counselling-dashboard-section {
    padding: 3.5rem 1rem !important;
  }

  h2.portal-display-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  .portal-display-subheading {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .bento-panel {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .panel-anchor-title {
    font-size: 19px !important;
    margin-bottom: 1.25rem;
  }

  .perks-checklist-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .full-width-perk {
    grid-column: span 1;
  }

  .perk-item span {
    font-size: 14.5px;
  }

  .form-vault-frame {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .vault-main-title {
    font-size: 22px;
  }

  .vault-sub-title {
    font-size: 14px;
  }
}/* End custom CSS */