  @import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    --main-blue: #1A2448; 
	--bright-blue: #0849c9;
    --main-green: #56722D; 
	--print-green: #648534;
	--main-grey: #A9A8A9;
	--sidebar-blue: #364772;
	--sidebar-blue-muted: #5F77B3;
}
/* MAIN ELEMENTS */

body {
	font-family: "PT Sans", sans-serif;
	width: 100%;
	font-size: 1rem;
}

.search_result {
	font-family: "PT Sans", sans-serif;
	width: 100%;
	font-size: 1rem;
	background-color: var(--main-blue);
}

.h5 {
	font-size: 1.4rem;
}

@media (max-width: 991.98px) {
  .header-svg-bg {
    max-height: 260px;
  }
}

@media (max-width: 767.98px) {
  .header-svg-bg {
    max-height: 380px;
  }
}

#mainHeader {
  background-color: #eaf5ff;
}

.header-layout {
  min-height: clamp(320px, 35vw, 480px);
  position: relative;
}

.header-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;  
  pointer-events: none;
  z-index: 0;
}

footer {
  	background-color: var(--main-green);
  	color: white;
  	padding: 2rem 1rem;
}

footer a {
  	color: white;
  	text-decoration: underline;
}

footer a:hover {
  	color: var(--main-green);
}

hr.hrgradient {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(22, 36, 71, 0), rgba(22, 36, 71, 100), rgba(22, 36, 71, 0));
}

/* Form field borders */
.form-control,
.form-select {
  border: 1.5px solid #9aabc2;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--main-blue);
  box-shadow: 0 0 0 0.2rem rgba(26, 36, 72, 0.15);
}

.form-control[readonly] {
  border-color: #dee2e6;
}

.form-check-input {
  border: 1.5px solid #9aabc2;
}

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

.form-check {
  padding: 10px 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  margin-bottom: 10px;
}

.form-check-input {
  margin-top: 0.3em;
  margin-right: 10px;
}

/* MAIN COLORS */
.bg-blue {
	background-color: var(--main-blue);
}
.bg-bright {
	background-color: var(--bright-blue);
	border-radius: 10px;
	border: thin solid black;
}
.bg-sidebar-muted {
	background-color: var(--sidebar-blue-muted);
}
.bg-secondary-muted {
	background-color: var(--sidebar-blue-muted) !important;
}
.text-blue {
	color: var(--main-blue);
}

.bg-green {
	background-color: var(--main-green);
}

.text-green {
	color: var(--main-green);
}

.bg-purple {
	background-color: var(--sidebar-blue);
}

.btn-success {
	background-color: var(--main-green);
}

.btn-primary {
	background-color: var(--main-blue);
}
.text-primary {
	color: var(--main-blue);
}

.btn-outline-success {
    color: var(--main-green);
    border-color: var(--main-green);
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    color: #fff;
    background-color: var(--main-green);
    border-color: var(--main-green);
}

.btn-outline-primary {
    color: var(--main-blue);
    border-color: var(--main-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #fff;
    background-color: var(--main-blue);
    border-color: var(--main-blue);
}

/* NAVIGATION BAR */
.navbar-toggler-icon {
  	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}


@media (max-width: 1399.98px) {
.bg-right-no-repeat  {
  background-image: none !important;
  background: linear-gradient(
    40deg,
    hsl(0deg 0% 100%) 0%,
    hsl(235deg 12% 90%) 21%,
    hsl(234deg 12% 81%) 30%,
    hsl(234deg 11% 71%) 39%,
    hsl(233deg 11% 62%) 46%,
    hsl(233deg 11% 53%) 54%,
    hsl(231deg 14% 44%) 61%,
    hsl(230deg 20% 35%) 69%,
    hsl(228deg 31% 27%) 79%,
    hsl(223deg 53% 18%) 100%
  ) !important;
	background-repeat: no-repeat;
	background-position: right center;
}
}

@media (max-width: 991.98px) {
  .bg-right-no-repeat {
    background: #ffffff !important;
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: left center;
  }
}

@media (min-width: 1400px) {
  .d-midonly {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-nav {
    gap: 0.5rem; 
  }

  .navbar-nav .nav-link {
    font-size: 0.7rem; 
  }

  .dropdown-menu {
    font-size: 0.72rem; 
    padding: 0.5rem 0.75rem; 
  }

  .dropdown-submenu > .dropdown-menu {
    left: 100%; 
  }
}


.apply-btn {
  	height: 100%;
  	min-height: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.alphabet-nav {
  	position: sticky;
  	top: 280px;
  	z-index: 1020;
  	background-color: #fff;
  	padding: 0.5rem 0;
}


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

/* NAV TABS */
.nav-tabs .nav-link {
  background-color: var(--bs-info-bg-subtle);
  margin-right: 5px;
  border-radius: 0.375rem 0.375rem 0 0;
}
.nav-tabs .nav-link.active {
  background-color: var(--bs-success-bg-subtle); 
  border-bottom-color: transparent; 
}

/* VIDEO PANEL */
.center-panel {
  	width: 60%;
  	max-width: 500px;
  	padding: 1.5rem;
  	background-color: rgba(0, 0, 0, 0.5);
  	border-radius: 0.5rem;
}

.fade-transition {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.fade-show {
  	opacity: 1;
}
@keyframes fadeSlideUp {
  0% {
	opacity: 0;
	transform: translateY(30px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

.hero-text {
  	animation: fadeSlideUp 1.2s ease-out forwards;
  	opacity: 0;
}

.hero-subtext {
	animation: fadeSlideUp 1.5s ease-out forwards;
	opacity: 0;
	animation-delay: 0.8s;
}

/* LINKS */
#links a {
  	color:#202f4c;
}
#links a:hover {
  	color:#64843b;
}

/* FITTY */
.fit-text {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	text-align: center;
}
.image-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.vertical-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 75vh;
	background-color: #007bff;
	color: white;
	border-radius: 10px;
}


.director-info {
	margin-top: 50px;
	text-align: center;
	/*border: thin solid #A8A8A8;
	padding: 8px;
	width: 70%;*/
}
.director-info img {
	border-bottom-right-radius: 20%;
	border-top-left-radius: 20%;
	width: 85%;
	text-align: left;
	margin-bottom: 15px;
}
.contact-form {
	background-color: #C5CBF1;
	padding: 15px;
}


.mobile-logo {
  display: none;
}


@media (max-width: 992px) {
  .mobile-logo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }


  .header-svg-bg {
    display: none !important;
  }
}
@media (max-width: 767.98px) and (orientation: landscape) {
  .header-layout {
    min-height: 260px; /* Or whatever makes room — tweak as needed */
  }

  .mobile-logo {
    margin-bottom: 1rem; /* Push nav bar down just a little */
  }
}

/* SIDEBAR NAV */

.list-group a.list-group-item {
  transition: background 0.4s ease, color 0.4s ease;
  border-left: 4px solid transparent;
}

.list-group a.list-group-item:hover {
  background: linear-gradient(to left, #ffffff 0%, #dff5ff 50%, #c2e7ff 100%);
  color: #005b74;
  border-left: 4px solid var(--main-green);
}

.list-group a.list-group-item + a.list-group-item {
  margin-top: 2px;
}

.list-group a.list-group-item::after {
  content: "➜";
  float: right;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s, transform 0.3s;
}

.list-group a.list-group-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* GENERAL STYLING */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(22,36,71, 25), rgb(22,36,71, 100), rgba(22,36,71, 25));
}

/* social media icons */
.footer-social .btn-social{
  /* WCAG 2.2 target size: comfy hit area */
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem; /* or 50% if you want circles */
}

.footer-social .btn-social:focus-visible{
  outline: 2px solid #fff;     /* adjust for your footer bg */
  outline-offset: 3px;
}

.footer-social .btn-social:hover{
  opacity: .85;
}

/* Only style submenus under .dropdown-submenu */
.dropdown-submenu > .dropdown-menu {
  background-color: #f0f4ff; /* light bluish background */
  border-radius: 6px;
}

/* Container for skip links */
.skip-links {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.skip-links a {
  position: absolute;
  left: -999px;
  background: #004080;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.skip-links a:focus {
  left: 0;
}

/*Marketing Links*/

 .wtbg {
  background-color: #507a24;
  transition: background-color .15s ease, color .15s ease;
}

.wta {
  color: #ffffff;      
  text-decoration: none;
  display: block;        /* make entire area clickable */
}

.wtbg:hover,
.wtbg:focus-within {
  background-color: #cff4fc;
}

.wtbg:hover .wta,
.wtbg:focus-within .wta,
.wta:hover,
.wta:focus {
  color: #507a24;
}

@media (prefers-reduced-motion: reduce){
  .footer-social .btn-social{ transition: none; }
}

/* ============================================================
   NAVIGATION REDESIGN — SAMPLE VARIANTS
   Everything below is scoped to .mtcc-nav so it does not affect
   the live #desktopNav navbar rendered by main_nav.php.
   Wrapper classes set per sample:
     .mtcc-nav .system-1 .style-a   (Sample 1A)
     .mtcc-nav .system-1 .style-b   (Sample 1B)
     .mtcc-nav .system-2 .style-a   (Sample 2A)
     .mtcc-nav .system-2 .style-b   (Sample 2B)
   ============================================================ */

/* ---- Shared panel surface (dark secondary grey, dark enough to stand out) ---- */
.mtcc-nav .container { position: relative; }

.mtcc-nav .dropdown-menu {
  background-color: var(--main-blue);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 42px rgba(0,0,0,.32);
  padding: 1.15rem 0;
  color: #E8EAF0;
  min-width: 260px;
}

.mtcc-nav .dropdown-menu .dropdown-item {
  color: #E8EAF0;
  font-weight: 500;
  padding: .55rem 1.1rem;
}
.mtcc-nav .dropdown-menu .dropdown-item:hover,
.mtcc-nav .dropdown-menu .dropdown-item:focus-visible {
  background-color: var(--accent, #9bc362);
  color: #1A2448;
}

.mtcc-nav .dropdown-divider {
  border-top-color: rgba(255,255,255,.18);
  margin: .55rem 0;
}

/* Submenu sits slightly lifted from parent panel for layered depth */
.mtcc-nav .dropdown-submenu > .dropdown-menu {
  background-color: #2A3358;
  border-radius: .35rem;
}

/* Open on hover (mouse) AND on keyboard focus moving into the item */
.mtcc-nav .nav-item.dropdown:hover > .dropdown-menu,
.mtcc-nav .nav-item.dropdown:focus-within > .dropdown-menu { display: block; }

/* Visible keyboard focus indicator — white ring, high contrast on the dark panel */
.mtcc-nav a:focus-visible,
.mtcc-nav .nav-link:focus-visible,
.mtcc-nav .dropdown-item:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: .25rem;
}

/* ---- Mega-menu layout (style-b) ---- */
.mtcc-nav.style-b .nav-item.mega { position: static; }

.mtcc-nav.style-b .nav-item.mega > .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  border-radius: 0 0 .7rem .7rem;
  padding: 1rem 1.75rem 2.25rem;
}

/* Auto-shrink panel for single-column megas (fixes 2B Programs whitespace) */
.mtcc-nav.style-b .nav-item.mega > .dropdown-menu.narrow-panel {
  left: 50%;
  right: auto;
  width: auto;
  min-width: 440px;
  max-width: 720px;
  transform: translateX(-50%);
}

/* Promoted pills — centered row of shortcuts */
.mtcc-nav.style-b .mega-promoted {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .7rem;
  padding: .4rem 0 1.4rem;
}
/* Standardized across all multi-column megas: solid brand green (#9bc362)
   with navy text = 7.5:1 (AAA). Fixed hue on purpose — the columns carry the
   per-audience accent, the pills stay one consistent "priority shortcut" color. */
.mtcc-nav.style-b .mega-promoted a {
  display: inline-block;
  padding: .5rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: 1.5px solid #9bc362;
  color: #1A2448;
  background-color: #9bc362;
  transition: background-color .15s ease, color .15s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.mtcc-nav.style-b .mega-promoted a:hover,
.mtcc-nav.style-b .mega-promoted a:focus-visible {
  background-color: #1A2448;
  color: #9bc362;
}

/* Mega-grid columns */
.mtcc-nav.style-b .mega-grid {
  display: grid;
  gap: 1.5rem 1.75rem;
  text-align: left;
  padding-top: .5rem;
}
.mtcc-nav.style-b .mega-grid.cols-1 { grid-template-columns: minmax(0, 1fr); }
.mtcc-nav.style-b .mega-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mtcc-nav.style-b .mega-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mtcc-nav.style-b .mega-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mtcc-nav.style-b .mega-col-header {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  padding-bottom: .6rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--accent, #9bc362);
}
.mtcc-nav.style-b .mega-col-header i {
  color: var(--accent, #9bc362);
  font-size: 1.35rem;
  opacity: .9;
}
.mtcc-nav.style-b .mega-col ul { list-style: none; padding: 0; margin: 0; }
.mtcc-nav.style-b .mega-col li a {
  display: block;
  padding: .5rem .6rem;
  margin: 0 -.6rem;
  border-radius: .3rem;
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.4;
  color: #E8EAF0;
  font-weight: 500;
  transition: background-color .12s ease, color .12s ease;
}
.mtcc-nav.style-b .mega-col li a:hover,
.mtcc-nav.style-b .mega-col li a:focus-visible {
  background-color: var(--accent, #9bc362);
  color: #1A2448;
  text-decoration: none;
}

/* ---- System 1 — Audience-First (per-audience color accents) ---- */
.mtcc-nav.system-1 .aud-future    { --accent: #5fa8ff; }
.mtcc-nav.system-1 .aud-current   { --accent: #9bc362; }
.mtcc-nav.system-1 .aud-employees { --accent: #7d96d2; }
.mtcc-nav.system-1 .aud-community { --accent: #a8d165; }
.mtcc-nav.system-1 .aud-about     { --accent: #d4c896; }
.mtcc-nav.system-1 .aud-contact   { --accent: #A9A8A9; }

/* Subtle accent (style-a flyout): thin 2px top border */
.mtcc-nav.system-1.style-a .nav-item.dropdown > .dropdown-menu {
  border-top: 2px solid var(--accent, #A9A8A9);
}

/* Bold accent (style-b mega): 5px top border.
   Unified to the brand green across every dropdown (was per-audience --accent).
   Columns still carry their per-audience accent; this line ties them together. */
.mtcc-nav.system-1.style-b .nav-item.mega > .dropdown-menu,
.mtcc-nav.system-1.style-b .nav-item.dropdown > .dropdown-menu {
  border-top: 5px solid #56722D;
}

/* ---- System 2 — Topic-First (uniform green accent) ---- */
.mtcc-nav.system-2 { --accent: #9bc362; }

.mtcc-nav.system-2.style-a .nav-item.dropdown > .dropdown-menu {
  border-top: 2px solid var(--accent);
}
.mtcc-nav.system-2.style-b .nav-item.mega > .dropdown-menu,
.mtcc-nav.system-2.style-b .nav-item.dropdown > .dropdown-menu {
  border-top: 5px solid var(--accent);
}
