:root {
  /* Scope Brand Colors */
  --scope-purple: #400080;
  --scope-teal: #008A96;
  --scope-yellow: #FFCE00;
  --scope-off-white: #F4F4F4;
  --scope-text-dark: #212529;

  --primary-color: var(--scope-purple);
  --secondary-color: var(--scope-teal);
  --accent-color: var(--scope-yellow);
  --text-color: var(--scope-text-dark);
  --bg-color: #ffffff;
}

body {
  font-family: 'Hargreaves', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Mimicking their custom font */
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 1.125rem;
  /* Larger base font size for accessibility */
}

/* Accessibility: Skip to Content */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--scope-yellow);
  color: var(--scope-purple);
  padding: 15px;
  font-weight: bold;
  z-index: 1000;
  transition: top 0.3s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 4px solid var(--scope-purple);
}

/* Enhancing Focus States */
*:focus-visible {
  outline: 4px solid var(--scope-yellow);
  outline-offset: 2px;
  background-color: var(--scope-purple) !important;
  color: white !important;
  box-shadow: none;
}

/* Navbar overrides */
.navbar {
  background-color: white !important;
  border-bottom: 5px solid var(--scope-purple);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand {
  color: var(--scope-purple) !important;
  font-weight: 800;
  font-size: 1.8rem;
}

.nav-link {
  color: var(--scope-purple) !important;
  font-weight: 600;
  font-size: 1.0rem;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  color: var(--scope-teal) !important;
}
   /* Navigation vertical alignment */
        .navbar-nav {
            align-items: center;
        }
        .navbar-nav .nav-item {
            display: flex;
            align-items: center;
        }
        .navbar-nav .nav-link,
        .navbar-nav .dropdown-toggle {
            display: flex;
            align-items: center;
            height: 100%;
        }
.navbar-toggler {
  /*border: 2px solid var(--scope-purple);*/
  /*background-color: var(--scope-purple);*/
}

/* Hero Section - Scope Style */
.hero-section {
  background-color: var(--scope-purple);
  color: white;
  padding: 80px 0;
  position: relative;
  /* Removing the image overlay for a cleaner solid color accessible look, or making it distinct */
  background-image: none;
}

/* If we want an image, Scope often uses a cut-out or side-by-side. 
   For this template, we'll keep the solid high-contrast look or use a side image. */

.hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  border-radius: 50px;
  /* Scope uses pill buttons often or sharp edges. Let's go with large accessible pills or sharp. Scope is often rounded. */
  font-weight: 700;
  padding: 12px 30px;
  font-size: 1.1rem;
  text-transform: none;
  border: 3px solid transparent;
}

.btn-primary {
  background-color: var(--scope-yellow);
  color: var(--scope-purple);
  border-color: var(--scope-yellow);
}

.btn-primary:hover {
  background-color: white;
  color: var(--scope-purple);
  border-color: var(--scope-purple);
}

.btn-outline-primary {
  color: var(--scope-purple);
  border-color: var(--scope-purple);
}

.btn-outline-primary:hover {
  background-color: var(--scope-purple);
  color: white;
}

/* Main Content Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--scope-purple);
  font-weight: 700;
}

/* Feature/Card Styles */
.feature-card,
.card {
  border: none;
  border-radius: 0;
  /* Scope uses sharp edges often for cards */
  background-color: var(--scope-off-white);
  transition: transform 0.2s;
  border-bottom: 6px solid var(--scope-teal);
  /* Distinct colored bottom border */
}

.feature-card:hover,
.card:hover {
  transform: translateY(-5px);
  background-color: #e9e9e9;
}

.feature-icon {
  color: var(--scope-teal);
  font-size: 3rem;
}

.bg-light {
  background-color: var(--scope-off-white) !important;
}

/* Tables */
.table-dark {
  background-color: var(--scope-purple);
}

/* Footer */
footer {
  background-color: var(--scope-purple) !important;
  color: white;
  padding-top: 4rem ;
}

footer h2 {
  color: var(--scope-yellow);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: var(--scope-yellow);
  text-decoration: none;
}

footer .bg-dark {
  background-color: #2a0055 !important;
  /* Darker purple for copyright */
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
    /* Full width buttons on mobile for easier tapping */
    margin-bottom: 0.5rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}
.stats-section {
    background: #f8f9fc;
}

.stat-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stat-icon { 
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}
.display-5.fw-bold.mb-3 {
    color: #fff;
}
.program .card-text.text-muted.mb-4 {
    min-height: 86px;
}
.program .h4.card-title.fw-bold.mb-3 {
    min-height: 57px;
}
.navbar-toggler{color:#fff;}