/* =========================================================
   SPARK LABS WEBSITE
   COMPLETE STYLE SHEET
   ========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #102a43;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    width: 100%;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background-color: #ffffff;

    border-bottom: 1px solid #e8eef3;

    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo-icon img {
    width: 36px;
    height: 36px;

    object-fit: contain;

    display: block;
}

.logo-text {
    line-height: 1;
}

.logo-text strong {
    display: block;

    color: #0878e8;

    font-size: 16px;
    line-height: 1.1;
}

.logo-text small {
    display: block;

    margin-top: 3px;

    font-size: 7px;
    line-height: 1;

    color: #090a0c;

    letter-spacing: 0.9px;

    font-weight: 800;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.navigation {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-left: auto;
    margin-right: 35px;
}

.navigation a {
    position: relative;

    color: #102a43;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #0878e8;
}

.navigation a.active {
    color: #0878e8;
}

.navigation a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 22px;
    height: 2px;

    background-color: #0878e8;

    transform: translateX(-50%);
}


/* =========================================================
   ENROLL BUTTON
========================================================= */

.enroll-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 9px 17px;

    background-color: #0878e8;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.enroll-button:hover {
    background-color: #0566c7;
    transform: translateY(-1px);
}


/* =========================================================
   MAIN HOME HERO
========================================================= */

.hero {
    width: 100%;

    /*
     * IMPORTANT:
     * The old value was 760px.
     * That made the hero take up most of the screen.
     */
    min-height: 430px;
    height: 430px;

    display: flex;
    align-items: center;

    position: relative;

    padding: 35px 5%;

    background-color: #eef4f8;

    overflow: hidden;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 45%;
    max-width: 590px;

    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 0;

    margin: 0;
}

.hero-eyebrow {
    margin: 0 0 10px;

    color: #0878e8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.5px;

    line-height: 1.3;
}

.hero h1 {
    margin: 0 0 13px;

    color: #0b2545;

    font-size: 40px;

    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -0.7px;
}

.hero h1 span {
    display: block;

    color: #0878e8;
}

.hero-description {
    width: 100%;
    max-width: 500px;

    margin: 0 0 17px;

    color: #29445f;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 20px;

    margin: 0 0 18px;

    flex-wrap: nowrap;
}

.hero-feature {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 7px;

    flex-shrink: 1;
}

.feature-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #e1f1ff;

    color: #0878e8;

    font-size: 15px;

    font-weight: bold;
}

.hero-feature .feature-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.hero-feature .feature-icon img {
    width: 36px;
    height: 36px;

    object-fit: contain;

    display: block;
}

.hero-feature strong {
    display: block;

    color: #102a43;

    font-size: 9px;

    line-height: 1.35;

    white-space: normal;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 9px;

    margin: 0;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 35px;

    padding: 9px 16px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.primary-button {
    background-color: #0878e8;

    color: #ffffff;

    border: 1px solid #0878e8;
}

.primary-button:hover {
    background-color: #0566c7;

    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid #0878e8;

    color: #0878e8;

    background-color: #ffffff;
}

.secondary-button:hover {
    background-color: #eef8ff;

    transform: translateY(-1px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 57%;
    height: 100%;

    overflow: hidden;

    z-index: 1;
}

.hero-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    border-radius: 0;

    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.55) 12%,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 1) 100%
    );

    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.55) 12%,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 1) 100%
    );
}


/* =========================================================
   GENERAL SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 28px;
}

.section-eyebrow {
    margin-bottom: 6px;

    color: #0878e8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.section-heading h2 {
    color: #0b2545;

    font-size: 25px;

    line-height: 1.2;
}

.heading-line,
.small-line {
    width: 27px;
    height: 3px;

    margin: 9px auto 0;

    background-color: #0878e8;

    border-radius: 3px;
}


/* =========================================================
   PROGRAMS SECTION
========================================================= */

.programs-section {
    width: 100%;

    padding: 42px 5% 48px;

    background-color: #ffffff;
}

.program-cards {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.program-card {
    min-height: 225px;

    padding: 21px 16px;

    border: 1px solid #dceaf5;

    border-radius: 15px;

    background-color: #ffffff;

    box-shadow: 0 5px 20px rgba(30, 100, 160, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.program-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 28px rgba(30, 100, 160, 0.09);
}

.program-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background-color: #e5f3ff;

    overflow: hidden;
}

.program-icon img {
    width: 52px;
    height: 52px;

    object-fit: contain;

    display: block;
}

.program-card h3 {
    color: #102a43;

    font-size: 15px;

    line-height: 1.3;

    margin-bottom: 9px;
}

.program-card h3 span {
    display: block;

    color: #0878e8;

    font-size: 16px;
}

.program-card p {
    color: #263f58;

    font-size: 10px;

    line-height: 1.55;

    margin-bottom: 15px;
}

.program-card a {
    color: #0878e8;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   MISSION SECTION
========================================================= */

.mission-section {
    width: 100%;

    padding: 55px 5%;

    display: flex;
    align-items: center;

    gap: 45px;

    background-color: #eaf6ff;
}

.mission-content {
    width: 40%;

    flex-shrink: 0;
}

.mission-content h2 {
    color: #0b2545;

    font-size: 27px;

    line-height: 1.2;

    margin-top: 5px;
}

.small-line {
    margin: 10px 0 15px;
}

.mission-description {
    color: #263f58;

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 19px;
}

.mission-list {
    list-style: none;

    margin-bottom: 22px;
}

.mission-list li {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: #102a43;

    font-size: 11px;
}

.mission-list li span {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #0878e8;

    border-radius: 50%;

    color: #0878e8;

    font-size: 9px;
}


/* =========================================================
   MISSION IMAGE
========================================================= */

.mission-image {
    width: 60%;

    position: relative;
}

.mission-image img {
    width: 100%;
    height: 290px;

    object-fit: cover;

    display: block;

    border-radius: 18px;
}


/* =========================================================
   STATS
========================================================= */

.stats-box {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: -42px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 16px;

    background-color: #ffffff;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(30, 100, 160, 0.12);
}

.stat {
    text-align: center;

    border-right: 1px solid #dceaf5;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    color: #102a43;

    font-size: 16px;

    margin-bottom: 4px;
}

.stat span {
    display: block;

    color: #466078;

    font-size: 9px;
}


/* =========================================================
   CURRICULUM
========================================================= */

.curriculum-section {
    padding: 72px 5% 55px;

    background-color: #ffffff;
}

.curriculum-items {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.curriculum-item {
    text-align: center;

    padding: 10px 18px;

    border-right: 1px solid #dceaf5;
}

.curriculum-item:last-child {
    border-right: none;
}

.curriculum-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #e5f3ff;

    color: #0878e8;

    font-size: 21px;

    font-weight: bold;
}

.curriculum-item h3 {
    color: #102a43;

    font-size: 11px;

    line-height: 1.4;

    margin-bottom: 3px;
}

.curriculum-item p {
    color: #102a43;

    font-size: 10px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    background-color: #071b33;

    color: #ffffff;

    padding: 50px 5% 0;
}

.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr
        1.6fr;

    gap: 35px;

    padding-bottom: 38px;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 15px;
}

.footer-logo img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.footer-logo strong {
    display: block;

    color: #ffffff;

    font-size: 17px;
}

.footer-logo small {
    display: block;

    margin-top: 3px;

    color: #b9cce0;

    font-size: 7px;

    letter-spacing: 0.9px;

    font-weight: 700;
}

.footer-brand > p {
    color: #aebfd1;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3,
.footer-newsletter h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 13px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-column a {
    color: #aebfd1;

    text-decoration: none;

    font-size: 10px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #0878e8;
}

.footer-column p {
    color: #aebfd1;

    font-size: 10px;

    line-height: 1.5;

    margin: 0;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.footer-newsletter {
    max-width: 300px;
}

.footer-newsletter > p {
    color: #aebfd1;

    font-size: 10px;

    line-height: 1.6;

    margin-bottom: 13px;
}

.newsletter-form {
    display: flex;

    width: 100%;
}

.newsletter-form input {
    min-width: 0;

    flex: 1;

    padding: 10px;

    border: 1px solid #304b66;

    border-right: none;

    border-radius: 5px 0 0 5px;

    background-color: #102a43;

    color: #ffffff;

    outline: none;

    font-size: 10px;
}

.newsletter-form input::placeholder {
    color: #8fa5ba;
}

.newsletter-form input:focus {
    border-color: #0878e8;
}

.newsletter-form button {
    padding: 10px 13px;

    border: none;

    border-radius: 0 5px 5px 0;

    background-color: #0878e8;

    color: #ffffff;

    cursor: pointer;

    font-size: 10px;

    font-weight: 700;
}

.newsletter-form button:hover {
    background-color: #0566c7;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 17px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #203a53;
}

.footer-bottom p {
    color: #8299ad;

    font-size: 9px;
}

.footer-bottom-links {
    display: flex;

    gap: 18px;
}

.footer-bottom-links a {
    color: #8299ad;

    text-decoration: none;

    font-size: 9px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   PROGRAMS PAGE HERO
========================================================= */

.programs-hero {
    width: 100%;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 42px 5%;

    background:
        linear-gradient(
            90deg,
            #f4faff 0%,
            #f8fcff 52%,
            #eef8ff 100%
        );

    overflow: hidden;
}


/* =========================================================
   PROGRAMS HERO CONTENT
========================================================= */

.programs-hero-content {
    width: 48%;
    max-width: 620px;

    margin: 0;
    padding: 0;

    flex-shrink: 0;
}

.programs-eyebrow {
    display: inline-block;

    margin: 0 0 14px;

    padding: 5px 12px;

    color: #0878e8;

    background-color: #e7f3ff;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.programs-hero h1 {
    margin: 0;

    color: #06234a;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.8px;
}

.programs-hero h1 span {
    display: block;

    color: #1678f2;
}

.program-title-line {
    width: 42px;
    height: 3px;

    margin: 16px 0 15px;

    background-color: #1678f2;

    border-radius: 20px;
}

.programs-hero-description {
    max-width: 540px;

    margin: 0 0 18px;

    color: #415d78;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   PROGRAM STAT ROW
========================================================= */

.program-stat-row {
    width: 100%;
    max-width: 650px;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 8px;

    margin: 0;
}

.program-stat {
    min-width: 0;
    min-height: 68px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 8px;

    background-color: #ffffff;

    border: 1px solid #dceaf6;

    border-radius: 10px;

    box-shadow: 0 4px 14px rgba(30, 100, 160, 0.05);
}

.program-stat-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: transparent;

    border: none;

    border-radius: 0;

    box-shadow: none;
}

.program-stat-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;

    display: block;
}

.program-stat strong {
    display: block;

    margin: 0 0 2px;

    color: #06234a;

    font-size: 12px;

    font-weight: 700;
}

.program-stat span {
    display: block;

    color: #4f6780;

    font-size: 8px;

    line-height: 1.3;
}


/* =========================================================
   PROGRAMS HERO IMAGE
========================================================= */

.programs-hero-image {
    width: 50%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    flex-shrink: 0;
}

.programs-hero-image img {
    width: 100%;
    max-width: 600px;

    height: auto;

    max-height: 320px;

    display: block;

    object-fit: contain;

    margin: 0;
    padding: 0;

    border-radius: 0;

    box-shadow: none;
}

.hero-image-shape {
    display: none;
}


/* =========================================================
   EXPLORE PROGRAMS
========================================================= */

.explore-programs {
    padding: 42px 5% 30px;

    background-color: #ffffff;
}

.program-page-heading {
    text-align: center;

    margin-bottom: 27px;
}

.program-page-heading p {
    margin-bottom: 6px;

    color: #0878e8;

    font-size: 9px;

    font-weight: 700;
}

.program-page-heading h2 {
    margin-bottom: 7px;

    color: #0b2545;

    font-size: 25px;
}

.program-page-heading span {
    color: #60778c;

    font-size: 10px;
}


/* =========================================================
   PROGRAM GRID
========================================================= */

.large-program-grid {
    width: 100%;
    max-width: 1200px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin: 0 auto;
}

.large-program-card {
    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid #dce8f2;

    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(30, 100, 160, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.large-program-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(30, 100, 160, 0.12);
}


/* =========================================================
   PROGRAM CARD IMAGE
========================================================= */

.program-card-image {
    height: 180px;

    position: relative;

    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.favorite-button {
    width: 32px;
    height: 32px;

    position: absolute;

    right: 11px;
    top: 11px;

    border: none;

    background-color: #ffffff;

    color: #0878e8;

    border-radius: 50%;

    font-size: 18px;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.program-round-icon {
    width: 42px;
    height: 42px;

    position: absolute;

    bottom: -17px;
    left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0878e8;

    color: #ffffff;

    border: 3px solid #ffffff;

    border-radius: 50%;

    font-size: 17px;
}


/* =========================================================
   PROGRAM CONTENT
========================================================= */

.large-program-content {
    padding: 24px 16px 16px;
}

.large-program-content h3 {
    margin-bottom: 9px;

    color: #102a43;

    font-size: 16px;

    line-height: 1.35;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 12px;
}

.program-tags span {
    padding: 4px 7px;

    background-color: #f1f8fd;

    color: #47657d;

    border-radius: 5px;

    font-size: 8px;
}

.large-program-content > p {
    min-height: 60px;

    margin-bottom: 13px;

    color: #526b82;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   PROGRAM INFO
========================================================= */

.program-info {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-bottom: 15px;
}

.program-info div {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #4c667d;

    font-size: 9px;
}

.program-info strong {
    color: #0878e8;

    font-size: 12px;
}


/* =========================================================
   PROGRAM BUTTONS
========================================================= */

.program-card-buttons {
    display: flex;

    gap: 7px;
}

.program-outline-button,
.program-blue-button {
    flex: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 10px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.program-outline-button {
    color: #0878e8;

    background-color: #ffffff;

    border: 1px solid #9ccdf4;
}

.program-outline-button:hover {
    background-color: #eef8ff;
}

.program-blue-button {
    color: #ffffff;

    background-color: #0878e8;

    border: 1px solid #0878e8;
}

.program-blue-button:hover {
    background-color: #0566c7;
}


/* =========================================================
   FEATURED PROGRAM
========================================================= */

.featured-program {
    width: 100%;
    max-width: 1200px;

    margin: 20px auto 40px;

    padding: 28px;

    background-color: #eef8ff;

    border-radius: 17px;
}

.featured-program-top {
    display: flex;
    align-items: center;

    gap: 40px;

    margin-bottom: 23px;
}

.featured-program-content {
    width: 52%;
}

.back-programs {
    display: inline-block;

    margin-bottom: 17px;

    padding: 5px 8px;

    background-color: #e1f1ff;

    color: #0878e8;

    border-radius: 5px;

    text-decoration: none;

    font-size: 8px;
}

.featured-program-content h2 {
    margin-bottom: 7px;

    color: #102a43;

    font-size: 23px;
}

.featured-links {
    margin-bottom: 11px;

    color: #0878e8;

    font-size: 12px;

    font-weight: 600;
}

.featured-links span {
    margin: 0 5px;

    color: #7992a8;
}

.featured-program-content > p {
    max-width: 560px;

    margin-bottom: 18px;

    color: #526b82;

    font-size: 10px;

    line-height: 1.7;
}

.featured-buttons {
    display: flex;

    gap: 9px;
}

.featured-buttons .program-blue-button,
.featured-buttons .program-outline-button {
    flex: 0 0 auto;

    padding-left: 17px;
    padding-right: 17px;
}

.featured-image {
    width: 48%;
}

.featured-image img {
    width: 100%;
    height: 210px;

    display: block;

    object-fit: cover;

    border-radius: 14px;
}


/* =========================================================
   DETAIL BOXES
========================================================= */

.program-detail-boxes {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 9px;

    margin-bottom: 23px;
}

.program-detail {
    display: flex;

    gap: 9px;

    padding: 15px;

    background-color: #ffffff;

    border-radius: 11px;
}

.detail-icon {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #0878e8;

    background-color: #eaf6ff;

    border-radius: 50%;

    font-size: 12px;
}

.program-detail strong {
    display: block;

    margin-bottom: 4px;

    color: #102a43;

    font-size: 9px;
}

.program-detail p {
    color: #60778c;

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   PROGRAM INFORMATION
========================================================= */

.program-information {
    background-color: #ffffff;

    border: 1px solid #dce8f2;

    border-radius: 11px;

    overflow: hidden;
}

.program-info-navigation {
    display: flex;
    justify-content: space-between;

    padding: 14px 18px;

    border-bottom: 1px solid #e0ebf4;
}

.program-info-navigation a {
    padding-bottom: 7px;

    color: #526b82;

    text-decoration: none;

    font-size: 9px;

    font-weight: 600;
}

.program-info-navigation a.selected {
    color: #0878e8;

    border-bottom: 2px solid #0878e8;
}


/* =========================================================
   PROGRAM OVERVIEW
========================================================= */

.program-overview {
    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 28px;

    padding: 23px;
}

.overview-left {
    padding-right: 23px;

    border-right: 1px solid #e1eaf2;
}

.program-overview h3 {
    margin-bottom: 9px;

    color: #102a43;

    font-size: 12px;
}

.program-overview p {
    margin-bottom: 15px;

    color: #536b80;

    font-size: 9px;

    line-height: 1.7;
}

.overview-left ul {
    margin: 0 0 18px;

    padding: 0;

    list-style: none;
}

.overview-left li {
    margin-bottom: 7px;

    color: #435e75;

    font-size: 9px;
}

.overview-left li::first-letter {
    color: #0878e8;
}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.technology-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.technology-list span {
    padding: 8px 10px;

    background-color: #f4f9fd;

    border-radius: 6px;

    color: #466078;

    font-size: 8px;

    font-weight: 600;
}


/* =========================================================
   BUILD ITEMS
========================================================= */

.build-item {
    display: flex;

    gap: 9px;

    margin-bottom: 15px;
}

.build-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #0878e8;

    background-color: #eaf6ff;

    border-radius: 50%;

    font-size: 13px;
}

.build-item strong {
    display: block;

    margin-bottom: 3px;

    color: #102a43;

    font-size: 9px;
}

.build-item p {
    margin: 0;

    color: #60778c;

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.program-bottom-cta {
    width: 100%;
    max-width: 1200px;

    min-height: 115px;

    display: flex;
    align-items: center;

    gap: 23px;

    margin: 0 auto 42px;

    padding: 18px 27px;

    background-color: #eef8ff;

    border-radius: 16px;
}

.cta-image {
    width: 205px;
    height: 110px;

    overflow: hidden;

    align-self: flex-end;

    flex-shrink: 0;
}

.cta-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: top;

    border-radius: 70px 70px 0 0;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    margin-bottom: 6px;

    color: #102a43;

    font-size: 17px;
}

.cta-content p {
    max-width: 500px;

    color: #536b80;

    font-size: 9px;

    line-height: 1.5;
}

.program-bottom-cta > .program-blue-button {
    flex: 0 0 auto;

    padding: 11px 20px;
}


/* =========================================================
   TABLET — 1000PX
========================================================= */

@media (max-width: 1000px) {

    /* Navigation */

    .navbar {
        padding-left: 4%;
        padding-right: 4%;
    }

    .navigation {
        gap: 14px;

        margin-right: 20px;
    }

    .navigation a {
        font-size: 10px;
    }


    /* Home hero */

    .hero {
        min-height: 390px;
        height: 390px;

        padding: 30px 5%;
    }

    .hero-content {
        width: 48%;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 10px;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-feature {
        gap: 5px;
    }

    .hero-feature .feature-icon,
    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .hero-feature .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .hero-feature strong {
        font-size: 8px;
    }

    .hero-image {
        width: 55%;
    }


    /* Programs */

    .program-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mission-section {
        gap: 30px;
    }

    .mission-content {
        width: 42%;
    }

    .mission-image {
        width: 58%;
    }


    /* Curriculum */

    .curriculum-items {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }


    /* Footer */

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }


    /* Programs page hero */

    .programs-hero {
        min-height: 350px;

        gap: 25px;

        padding: 35px 5%;
    }

    .programs-hero-content {
        width: 53%;
    }

    .programs-hero-image {
        width: 47%;
    }

    .programs-hero h1 {
        font-size: 39px;
    }

    .program-stat-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .programs-hero-image img {
        max-height: 280px;
    }

    .large-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-detail-boxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET / LARGE MOBILE — 750PX
========================================================= */

@media (max-width: 750px) {

    /* =====================================================
       NAVIGATION
    ===================================================== */

    .navbar {
        height: auto;

        min-height: 64px;

        padding: 12px 5%;

        flex-wrap: wrap;

        gap: 12px;
    }

    .navigation {
        order: 3;

        width: 100%;

        justify-content: center;

        margin: 0;

        padding-top: 4px;

        gap: 15px;

        flex-wrap: wrap;
    }

    .navigation a {
        font-size: 10px;
    }

    .navigation a.active::after {
        bottom: -5px;
    }

    .enroll-button {
        padding: 8px 13px;
    }


    /* =====================================================
       HOME HERO
    ===================================================== */

    .hero {
        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        padding: 38px 5% 0;

        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 650px;

        padding: 0 0 32px;

        margin: 0 auto;
    }

    .hero-eyebrow {
        margin-bottom: 9px;

        font-size: 9px;
    }

    .hero h1 {
        font-size: 38px;

        line-height: 1.06;

        margin-bottom: 13px;
    }

    .hero-description {
        max-width: 600px;

        font-size: 11px;

        margin-bottom: 17px;
    }

    .hero-features {
        gap: 14px;

        flex-wrap: wrap;

        margin-bottom: 18px;
    }

    .hero-feature {
        flex: 0 0 auto;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-image {
        position: relative;

        top: auto;
        right: auto;

        width: calc(100% + 10%);

        height: 270px;

        margin-left: -5%;

        flex-shrink: 0;
    }

    .hero-photo {
        height: 100%;

        object-position: center center;

        -webkit-mask-image: none;
        mask-image: none;
    }


    /* =====================================================
       PROGRAMS
    ===================================================== */

    .programs-section {
        padding: 40px 5px 45px;
    }

    .program-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .program-card {
        min-height: 210px;
    }


    /* =====================================================
       MISSION
    ===================================================== */

    .mission-section {
        flex-direction: column;

        align-items: stretch;

        padding: 45px 5%;

        gap: 35px;
    }

    .mission-content,
    .mission-image {
        width: 100%;
    }

    .mission-image img {
        height: 280px;
    }


    /* =====================================================
       CURRICULUM
    ===================================================== */

    .curriculum-section {
        padding-top: 65px;
    }

    .curriculum-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;
    }

    .curriculum-item {
        border-right: none;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }


    /* =====================================================
       PROGRAMS PAGE HERO
    ===================================================== */

    .programs-hero {
        min-height: 0;

        flex-direction: column;

        align-items: stretch;

        gap: 25px;

        padding: 35px 5% 40px;
    }

    .programs-hero-content,
    .programs-hero-image {
        width: 100%;

        max-width: none;
    }

    .programs-hero h1 {
        font-size: 39px;
    }

    .programs-hero-description {
        font-size: 11px;
    }

    .programs-hero-image img {
        width: 100%;

        max-width: 620px;

        max-height: none;

        margin: 0 auto;
    }


    /* =====================================================
       PROGRAM GRID
    ===================================================== */

    .large-program-grid {
        grid-template-columns: 1fr;
    }

    .featured-program {
        margin-left: 5%;
        margin-right: 5%;

        padding: 22px;
    }

    .featured-program-top {
        flex-direction: column;

        align-items: stretch;

        gap: 25px;
    }

    .featured-program-content,
    .featured-image {
        width: 100%;
    }

    .featured-image img {
        height: 230px;
    }


    /* =====================================================
       PROGRAM DETAILS
    ===================================================== */

    .program-overview {
        grid-template-columns: 1fr;
    }

    .overview-left {
        padding-right: 0;

        padding-bottom: 25px;

        border-right: none;

        border-bottom: 1px solid #e1eaf2;
    }

    .program-info-navigation {
        overflow-x: auto;

        justify-content: flex-start;

        gap: 25px;
    }

    .program-bottom-cta {
        margin-left: 5%;
        margin-right: 5%;

        flex-wrap: wrap;
    }

    .cta-image {
        width: 150px;
    }
}


/* =========================================================
   MOBILE — 500PX
========================================================= */

@media (max-width: 500px) {

    /* =====================================================
       NAVIGATION
    ===================================================== */

    .navbar {
        padding: 10px 4%;
    }

    .logo-icon,
    .logo-icon img {
        width: 32px;
        height: 32px;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text small {
        font-size: 6px;
    }

    .navigation {
        gap: 10px;
    }

    .navigation a {
        font-size: 9px;
    }

    .enroll-button {
        padding: 8px 11px;

        font-size: 9px;
    }


    /* =====================================================
       HOME HERO
    ===================================================== */

    .hero {
        padding: 30px 5% 0;
    }

    .hero-content {
        padding-bottom: 28px;
    }

    .hero-eyebrow {
        font-size: 8px;

        margin-bottom: 8px;
    }

    .hero h1 {
        font-size: 32px;

        line-height: 1.07;

        letter-spacing: -0.4px;

        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 10px;

        line-height: 1.55;

        margin-bottom: 16px;
    }

    .hero-features {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        margin-bottom: 17px;
    }

    .hero-feature {
        width: 100%;
    }

    .hero-feature .feature-icon,
    .feature-icon {
        width: 34px;
        height: 34px;
    }

    .hero-feature .feature-icon img {
        width: 34px;
        height: 34px;
    }

    .hero-feature strong {
        font-size: 9px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 8px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        text-align: center;
    }

    .hero-image {
        height: 220px;
    }


    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .section-heading {
        margin-bottom: 23px;
    }

    .section-heading h2 {
        font-size: 22px;
    }


    /* =====================================================
       PROGRAMS
    ===================================================== */

    .programs-section {
        padding: 35px 5% 40px;
    }

    .program-cards {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .program-card {
        min-height: 0;

        padding: 19px 16px;
    }


    /* =====================================================
       MISSION
    ===================================================== */

    .mission-section {
        padding: 40px 5%;

        gap: 28px;
    }

    .mission-content h2 {
        font-size: 24px;
    }

    .mission-description {
        font-size: 11px;
    }

    .mission-image img {
        height: 230px;

        border-radius: 14px;
    }

    .stats-box {
        position: relative;

        left: 0;
        right: 0;
        bottom: 0;

        margin-top: -25px;

        padding: 13px;

        grid-template-columns: repeat(2, 1fr);

        gap: 14px;
    }

    .stat {
        border-right: none;

        border-bottom: 1px solid #dceaf5;

        padding-bottom: 10px;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;

        padding-bottom: 0;
    }

    .stat strong {
        font-size: 14px;
    }

    .stat span {
        font-size: 8px;
    }


    /* =====================================================
       CURRICULUM
    ===================================================== */

    .curriculum-section {
        padding: 55px 5% 45px;
    }

    .curriculum-items {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding: 40px 5% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-brand,
    .footer-newsletter {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .footer-bottom-links {
        gap: 14px;

        flex-wrap: wrap;
    }


    /* =====================================================
       PROGRAMS PAGE
    ===================================================== */

    .programs-hero {
        padding: 30px 5% 35px;

        gap: 25px;
    }

    .programs-eyebrow {
        margin-bottom: 12px;

        padding: 5px 10px;

        font-size: 9px;
    }

    .programs-hero h1 {
        font-size: 32px;

        line-height: 1.07;

        letter-spacing: -0.4px;
    }

    .program-title-line {
        margin: 14px 0 13px;
    }

    .programs-hero-description {
        margin-bottom: 17px;

        font-size: 10px;

        line-height: 1.55;
    }

    .program-stat-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 7px;
    }

    .program-stat {
        min-height: 70px;

        padding: 8px;
    }

    .program-stat-icon {
        width: 28px;
        height: 28px;
    }

    .program-stat-icon img {
        width: 25px;
        height: 25px;
    }

    .program-stat strong {
        font-size: 11px;
    }

    .program-stat span {
        font-size: 7px;
    }


    /* =====================================================
       EXPLORE PROGRAMS
    ===================================================== */

    .explore-programs {
        padding: 35px 5% 25px;
    }

    .program-page-heading h2 {
        font-size: 22px;
    }

    .large-program-grid {
        grid-template-columns: 1fr;
    }

    .large-program-content {
        padding: 23px 15px 15px;
    }


    /* =====================================================
       FEATURED PROGRAM
    ===================================================== */

    .featured-program {
        margin-left: 5%;
        margin-right: 5%;

        padding: 18px;

        border-radius: 14px;
    }

    .featured-program-content h2 {
        font-size: 21px;
    }

    .featured-image img {
        height: 200px;
    }

    .featured-buttons {
        flex-direction: column;

        width: 100%;
    }

    .featured-buttons .program-blue-button,
    .featured-buttons .program-outline-button {
        width: 100%;
    }


    /* =====================================================
       DETAIL BOXES
    ===================================================== */

    .program-detail-boxes {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       PROGRAM OVERVIEW
    ===================================================== */

    .program-overview {
        padding: 18px;

        gap: 22px;
    }


    /* =====================================================
       BOTTOM CTA
    ===================================================== */

    .program-bottom-cta {
        flex-direction: column;

        text-align: center;

        padding: 22px 18px;

        gap: 17px;
    }

    .cta-image {
        width: 180px;

        align-self: center;
    }

    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .program-bottom-cta > .program-blue-button {
        width: 100%;
    }
}


/* =========================================================
   VERY SMALL PHONES — 380PX
========================================================= */

@media (max-width: 380px) {

    .navigation {
        gap: 8px;
    }

    .navigation a {
        font-size: 8px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-image {
        height: 190px;
    }

    .programs-hero h1 {
        font-size: 29px;
    }

    .program-stat {
        min-height: 66px;
    }

    .program-stat strong {
        font-size: 10px;
    }

    .program-stat span {
        font-size: 6.5px;
    }
}


/* =========================================================
   ACCESSIBILITY / SAFETY
========================================================= */

:focus-visible {
    outline: 2px solid #0878e8;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
