:root {
  --purple: #0B5FA5;      /* primary blue */
  --purple-dark: #064A82; /* dark blue */
  --orange: #0AA37F;      /* green accent */
  --cream: #EEF7F5;
}

body {
	font-family: "Segoe UI", Arial, sans-serif;
	color: var(--text);
	margin: 0;
	background: #fff;
}

h1,
h2,
h3 {
	font-family: Georgia, "Times New Roman", serif;
}

a {
	text-decoration: none;
}
.top-bar {
  background: #f4faf8;
  font-size: 14px;
  border-bottom: 1px solid #dcebea;
}

.top-bar a {
  color: #0B5FA5;
  font-weight: 700;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid #dcebea;
  transition: all 0.2s ease;
}

.top-bar a:hover {
  background: #eaf6f4;
  color: #0AA37F;
}

.top-bar .search-link {
  background: #0AA37F;
  color: #fff;
  border-left: none;
  padding: 16px 26px;
}

.top-bar .search-link:hover {
  background: #0B5FA5;
  color: #fff;
}

/* Header */
.main-header {
	background: #fff;
	border-bottom: 3px solid var(--orange);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--purple);
	line-height: 1;
}

.logo-mark {
	width: 32px;
	height: 32px;
	border: 3px solid var(--purple);
	transform: rotate(45deg);
	position: relative;
}

.logo-mark::after {
	content: "";
	width: 13px;
	height: 13px;
	border: 3px solid var(--orange);
	position: absolute;
	top: 6px;
	left: 6px;
}

.brand-text {
	font-size: 19px;
	line-height: 17px;
}

.navbar-nav .nav-link {
	color: #0B5FA5;
	font-weight: 700;
	padding: 24px 12px;
	border-radius: 6px 6px 0 0;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	background-color: #0B5FA5;
	color: #ffffff !important;
	box-shadow: inset 0 -5px 0 #0AA37F;
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
	color: #ffffff;
}

/* Hero */
/* .hero {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(11, 95, 165, 0.98) 0%,
      rgba(11, 95, 165, 0.92) 42%,
      rgba(10, 163, 127, 0.55) 58%,
      rgba(10, 163, 127, 0) 75%),
    url("../images/hero.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.hero-content {
	color: #fff;
	max-width: 720px;
}

.hero h1 {
	font-size: 52px;
	line-height: 1.15;
	margin-bottom: 28px;
}

.hero h1 em {
	font-style: italic;
	display: block;
	font-weight: 400;
}

.hero-badge {
	display: inline-block;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.7);
	padding: 12px 18px;
	border-radius: 5px;
	font-weight: 700;
	font-size: 15px;
} */


.hero-slider,
.hero-slide {
  min-height: 520px;
  background: linear-gradient(110deg, #eef7f5 0%, #ffffff 48%, #eaf6ff 100%);
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 520px;
  padding: 0;
  display: flex;
  align-items: center;
}

.hero-slide-content h1 {
  color: #0B5FA5;
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-slide-content h1 span {
  display: block;
  color: #0AA37F;
}

.hero-slide-content p {
  color: #4b5d6b;
  font-size: 21px;
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.hero-slide-btn {
  background: #0B5FA5;
  color: #fff;
  padding: 13px 34px;
  border-radius: 6px;
  font-weight: 800;
}

.hero-slide-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.hero-slide-image {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-slide {
  background: linear-gradient(90deg, #f4fbf9 0%, #f4fbf9 48%, #eaf6ff 100%);
}

.hero-slide-image {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-slide-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(90deg, #f4fbf9 0%, rgba(244,251,249,0.75) 35%, rgba(244,251,249,0) 100%);
  z-index: 2;
}

.hero-slide-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  width: 55px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0B5FA5;
  border-radius: 50%;
  padding: 18px;
}

/* Search Strip */
.institution-search {
	background: var(--purple);
	padding: 28px 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.institution-search h4 {
	color: #fff;
	font-weight: 800;
	margin: 0;
	font-size: 25px;
}

.search-box {
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	min-height: 50px;
}

.search-box input,
.search-box select {
	border: none;
	border-right: 1px solid #d9c5dc;
	padding: 0 18px;
	font-size: 14px;
	outline: none;
}

.search-box input {
	flex: 1.4;
}

.search-box select {
	flex: 0.8;
	color: #555;
}

.search-box button {
	background: var(--purple-dark);
	color: #fff;
	border: none;
	padding: 0 48px;
	font-weight: 700;
}

/* Common Section */
.section-padding {
	padding: 85px 0;
}

.section-title {
	text-align: center;
	color: var(--purple);
	font-size: 42px;
	margin-bottom: 55px;
}

/* Help Cards */
.help-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 22px;
}

.help-card h5 {
	color: var(--purple);
	font-weight: 800;
	margin-bottom: 14px;
}

.help-card p {
	font-size: 15px;
	line-height: 1.5;
}

.card-link {
	color: var(--purple);
	font-weight: 800;
	font-size: 14px;
	display: inline-flex;
	gap: 14px;
	align-items: center;
}

/* Who We Are */
.who-section {
  position: relative;
  padding: 95px 0 90px;
  background: linear-gradient(110deg, #0B5FA5 0%, #087A9E 55%, #0AA37F 100%);
}

.who-section::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 230px;
	width: 100%;
	background: #fff;
	z-index: 1;
}

.who-section .container {
	position: relative;
	z-index: 2;
}

.who-title {
	color: #fff;
	text-align: center;
	font-size: 42px;
	margin-bottom: 65px;
}

.stat-card {
	background: var(--cream);
	border-radius: 6px;
	padding: 52px 38px;
	min-height: 365px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
	color: var(--orange);
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 10px;
}

.stat-card h5 {
	font-size: 17px;
	margin-bottom: 10px;
	color: #555;
}

.stat-card p {
	font-size: 15px;
	line-height: 1.45;
	margin: 0;
}

.purple-btn {
	background: var(--purple);
	color: #fff;
	border-radius: 5px;
	padding: 13px 45px;
	display: inline-block;
	font-weight: 800;
	font-size: 14px;
}

.purple-btn:hover {
	background: var(--purple-dark);
	color: #fff;
}

/* Divider */
.color-divider {
  height: 38px;
  background:
    linear-gradient(120deg, rgba(11, 95, 165, 0.95), rgba(8, 122, 158, 0.78), rgba(10, 163, 127, 0.95)),
    repeating-linear-gradient(45deg,
      transparent 0,
      transparent 35px,
      rgba(255, 255, 255, 0.12) 36px,
      rgba(255, 255, 255, 0.12) 70px);
}
/* News */
.news-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	margin-bottom: 22px;
}

.news-card h5 {
	color: var(--purple);
	font-weight: 800;
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 12px;
}

.tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	margin-right: 5px;
	margin-bottom: 12px;
	background: var(--purple);
	color: #fff;
}

.tag.light-blue {
	background: #d8f2f5;
	color: #333;
}

.tag.gray {
	background: #e3e3e3;
	color: #333;
}

.tag.beige {
	background: #e8d9be;
	color: #333;
}

.news-card p {
	font-size: 15px;
	line-height: 1.5;
}
.footer-new {
  background: linear-gradient(135deg, #064A82 0%, #0B5FA5 55%, #0AA37F 100%);
  padding: 55px 0 35px;
  color: #fff;
  position: relative;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.footer-new-logo {
  width: 115px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-links-new {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-links-new a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.9);
}

.back-top-new {
  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #0B5FA5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

@media(max-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top-new {
    right: 20px;
    bottom: 20px;
  }
}

/* Responsive */
@media (max-width: 991px) {
	.navbar-nav .nav-link {
		padding: 10px 0;
	}

	.hero {
		min-height: 420px;
		background-position: center;
	}

	.hero h1 {
		font-size: 38px;
	}

	.search-box {
		flex-direction: column;
	}

	.search-box input,
	.search-box select,
	.search-box button {
		min-height: 50px;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ddd;
	}

	.institution-search h4 {
		margin-bottom: 18px;
	}

	.section-title,
	.who-title {
		font-size: 34px;
	}

	.social-icons {
		justify-content: flex-start;
		margin-top: 25px;
	}
}

@media (max-width: 575px) {
	.top-bar {
		display: none;
	}

	.hero h1 {
		font-size: 31px;
	}

	.hero {
		min-height: 380px;
	}

	.section-padding {
		padding: 60px 0;
	}

	.stat-card {
		min-height: auto;
	}
}

.navbar-nav .nav-link {
	position: relative;
	color: #0B5FA5
	font-weight: 700;
	padding: 24px 12px;
	border-radius: 6px 6px 0 0;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
	overflow: hidden;
}

.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background-color: #0AA37F;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	background-color: #0B5FA5;
	color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
	opacity: 1;
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
	color: #ffffff;
}

.footer-logo {
	margin-bottom: 35px;
	display: block;
}

.footer-logo .logo-image {
	width: 80px;
	max-width: 100%;
	height: auto;
	display: block;
}

.main-header {
  position: relative;
  z-index: 999;
}

.menu-caret {
  font-size: 13px;
  margin-left: 4px;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border: 0;
  border-radius: 0;
  padding: 48px 0;
  margin-top: 0;
  background: #f8efe3;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 55px;
  align-items: center;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.mega-item i {
  color: #0AA37F;
  font-size: 28px;
  min-width: 30px;
}

.mega-item:hover {
  color: #0B5FA5
}

.mega-card {
  border: 2px solid #0B5FA5
  border-radius: 6px;
  padding: 28px;
  color: #0B5FA5
  min-height: 120px;
}

.canopy-text {
  font-size: 42px;
  font-weight: 300;
  display: block;
}

.mega-card small {
  font-weight: 800;
}

@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    padding: 20px;
    box-shadow: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.mega-card {
  width: 180px !important;
  height: 190px !important;
  padding: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mega-card-img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block;
}

.related-resources-section {
  padding: 55px 0;
  background: #fff;
}

.related-resources-box {
  max-width: 1180px;
  margin: 0 auto;

  background: #f8efe3;
  border-radius: 7px;
  padding: 55px 70px;
}

.related-resources-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #0AA37F;
  font-size: 46px;
  margin-bottom: 35px;
}

.related-resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.related-resources-grid li {
  color: #0B5FA5;
  font-size: 20px;
  margin-bottom: 22px;
}

.related-resources-grid a {
  color: #0B5FA5;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-resources-box {
    padding: 35px 25px;
  }

  .related-resources-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-resources-box h2 {
    font-size: 34px;
  }
}

.calendar-events-btn-section {
  padding: 0px 0;
  text-align: center;
  background: #fff;
}

.outline-purple-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 2px solid #0B5FA5
  color: #0B5FA5
  padding: 18px 48px;
  border-radius: 7px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.outline-purple-btn i {
  font-size: 28px;
}

.outline-purple-btn:hover {
  background: #0B5FA5;
  color: #fff;
   padding:10px 10px;
}
.navbar-brand .logo-image {
  width: 120px;
  height: auto;
  max-height: 95px;
  object-fit: contain;
  display: block;
}

.main-header .navbar {
  min-height: 105px;
}

.navbar-brand {
  padding: 8px 0;
}


.glance-section {
  padding: 85px 0;
  background: #EEF7F5;
}

.glance-card {
  max-width: 980px;
  margin: auto;
  background: #fff;
  border-left: 6px solid #0AA37F;
  border-radius: 10px;
  padding: 50px 60px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.section-kicker {
  color: #0AA37F;
  font-weight: 800;
  text-transform: uppercase;
}

.glance-card h2 {
  color: #0B5FA5;
  font-size: 42px;
  margin: 12px 0 22px;
}

.glance-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #2d3436;
}

.read-more-btn {
  background: #0B5FA5;
  color: #fff;
  border: 0;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 800;
  margin-top: 12px;
}

.advocacy-section { padding: 80px 0; background: #fff; }
.section-head-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:45px; }
.section-head-row h2 { color:#063F66; font-size:52px; font-weight:800; margin:auto; }
.section-arrows { display:flex; gap:18px; color:#0B5FA5; font-size:34px; }
.advocacy-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:34px; }
.advocacy-card img { width:100%; height:260px; object-fit:cover; margin-bottom:22px; }
.advocacy-card h5 { color:#063F66; font-size:22px; line-height:1.15; font-weight:500; }
.advocacy-card p { color:#5c7f99; font-size:18px; margin-top:8px; }
@media(max-width:991px){ .advocacy-grid{grid-template-columns:1fr 1fr;} .section-head-row h2{font-size:36px;} }
@media(max-width:575px){ .advocacy-grid{grid-template-columns:1fr;} }

.advocacy-grid {
  display: flex;
  gap: 34px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.advocacy-card {
  flex: 0 0 320px;
}

.section-arrows button {
  border: 0;
  background: transparent;
  color: #0B5FA5;
  font-size: 34px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hero-slider,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding: 45px 0 0;
  }

  .hero-slide-content {
    padding: 0 22px 30px;
  }

  .hero-slide-content h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-slide-content p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-slide-image,
  .hero-slide-image img {
    height: 260px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
  }
}