/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

/* Accessibility: Visually Hidden but Screen Reader Accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #112f60;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #5ac0ee;
    outline-offset: 2px;
}

body {
    font-family: 'Jost', sans-serif;
    color: #112f60;
    background-color: white;
    line-height: 1.6;
}

.content a, p a {
    color: #5ac0ee;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    font-weight: 700;
}

p a:hover,
p a:focus,
.content a:hover,
.content a:focus {
    color: #f1941c;
    text-decoration: underline;
    opacity: 0.85;
}

.content a:active {
    color: #112f60;
}


.-camas {
    color: #5ac0ee;
}

.-green {
    color: #6ec598;
}

.-orange {
    color: #f1941c;
}

.-text-align-left {
    text-align: left;
}

/* Top Bar */
.top-bar {
    background-color: #6ec598;
    height: 46px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 100px;
}

.top-bar a, .top-bar a:hover, .top-bar a:visited {
    color: #112f60;
}

.top-bar-content {
    display: flex;
    gap: 20px;
}

.top-link {
    color: #112f60;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-link:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background-color: #112f60;
    height: 117px;
    display: flex;
    align-items: center;
    padding: 0 68px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 2600px;
}

.logo {
    display: block;
    font-size: 41px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    color: #5ac0ee;
}

.nav-link.active:hover {
    opacity: 1;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #112f60;
    min-width: 280px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 25px;
    transition: background-color 0.3s;
    text-transform: none;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-link.active {
    color: #5ac0ee;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: rgba(90, 192, 238, 0.1);
    padding: 80px 100px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.hero-content {
    max-width: 1200px;
}

.hero-title {
    font-size: 44px;
    font-weight: 600;
    color: #112f60;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

.title-subdued {
    color: rgba(17, 47, 96, 0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Buttons */
.btn {
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background-color: #112f60;
    color: white;
    transition: .2s linear all;
}

.btn-primary:hover {
    background-color: #f1941c;
}

.btn-highlight {
    background-color: #f1941c;
    color: white;
}

.btn-highlight:hover {
    background-color: #d67e0f;
}

.btn-outline {
    background-color: white;
    color: #6ec598;
    border: 2px solid #6ec598;
}

.btn-outline:hover {
    background-color: #6ec598;
    color: white;
    border: 2px solid #fff;
}

.btn-learn {
    margin-top: 40px;
}

.btn-sectors {
    max-width: 100%;
    margin-top: 30px;
}

/* Metrics Section */
.metrics-section {
    background-color: #112f60;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 381px;
    gap: 60px;
}

.metric-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    max-width: 400px;
}

.metric-number {
    font-size: 200px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-right: 20px;
    text-align: left;
}

.metric-number img {
    height: 150px;
}

.metric-number.orange {
    color: #f1941c;
}

.metric-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.metric-label {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.4;
}

/* Pathways Section */
.pathways-section {
    padding: 80px 100px;
    text-align: center;
    background-color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-title.blue {
    color: #5ac0ee;
}

.section-title.orange {
    color: #f1941c;
}

.section-description {
    font-size: 24px;
    color: #112f60;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-description strong {
    font-weight: 700;
}

.pathways-diagram {
    position: relative;
    margin: auto;
    max-width: 1000px;
    padding: 10px;
}

.pathway-line {
    position: absolute;
    top: 60%;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #112f60;
    z-index: 1;
}

.pathway-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.pathway-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 220px;
}

.pathway-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #112f60;
    background-color: white;
    position: relative;
    margin-bottom: 15px;
    z-index: 3;
    box-shadow: 0 0 0 2px white;
}

.pathway-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* CAREER: Orange with dark blue outline/inner */
.pathway-orange {
    background-color: #f1941c;
    border-color: #112f60;
}

.pathway-orange::after {
    background-color: #112f60;
}

/* COLLEGE: Pink with dark blue outline/inner */
.pathway-pink {
    background-color: #ff69b4;
    border-color: #112f60;
}

.pathway-pink::after {
    background-color: #112f60;
}

/* ENTREPRENEURSHIP: Teal/green with dark blue outline/inner */
.pathway-teal {
    background-color: #5ac0ee;
    border-color: #112f60;
}

.pathway-teal::after {
    background-color: #112f60;
}

/* MILITARY: Dark blue with light blue outline/inner */
.pathway-military {
    background-color: #112f60;
    border-color: #5ac0ee;
}

.pathway-military::after {
    background-color: #5ac0ee;
}

.pathway-label {
    font-size: 20px;
    font-weight: 600;
    color: #112f60;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    line-height: 1.2;
}

/* Image Grid Section */
.image-grid-section {
    padding: 0;
    margin: 0;
}

.image-grid {
    display: flex;
    gap: 0;
}

.grid-image {
    flex: 1;
    height: 482px;
    overflow: hidden;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zero Barriers Section */
.zero-barriers-section {
    background-color: #6ec598;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 357px;
}

.zero-barriers-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
}

.zero-barriers-icon {
    flex-shrink: 0;
}

.zero-barriers-text {
    flex: 1;
}

.zero-barriers-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.zero-barriers-list {
    list-style: none;
    margin-bottom: 40px;
}

.zero-barriers-list li {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #112f60;
}

/* Sectors Section */
.sectors-section {
    padding: 80px 100px;
    text-align: center;
    background-color: white;
}

.sectors-description {
    font-size: 24px;
    color: #112f60;
    margin-bottom: 30px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.sector-card {
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sector-card:hover {
    /* transform: translateY(-5px); */
}

.sector-card img {
    width: 100%;
    height: 341px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover img {
    /*
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(17, 47, 96, 0.2);
    */
}

.sector-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 10px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background-color:#E0F5FF;
    padding: 100px 100px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #112f60;
    margin-bottom: 40px;
    text-transform: uppercase;
    max-width: 1727px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-size: 16px;
    color: #112f60;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    background-color: #112f60;
    padding: 80px 100px 60px;
    color: white;
}

.footer::before {
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    content: '';
    background: url('images/footer-topper.svg');
    background-size: cover;
    background-position: center;
    height: 190px;
    display: block;
    overflow: visible;
    width: 100%;
    z-index: 0;
}

.footer::after {
    position: absolute;
    left: 0;
    right: 0;
    top: -35px;
    content: url('images/montana-shape.svg');
    background-size: cover;
    background-position: center;
    height: 190px;
    display: block;
    overflow: visible;
    width: 100%;
    z-index: 0;
    text-align: center;
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-newsletter {
    text-align: left;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.69);
    border: none;
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #112f60;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    width: 100%;
    max-width: 400px;
}

.newsletter-input::placeholder {
    color: #112f60;
    opacity: 0.8;
}

.newsletter-button {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: #112f60;
    color: white;
    border-radius: 20px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    transition: .2s linear all;
    width: 100%;
    max-width: 50%;
    align-self: flex-end;
}

.newsletter-button:hover {
    background-color: #f1941c;
    border: 2px solid #f1941c;
    transform: translateY(-2px);
}

.newsletter-button:active {
    transform: translateY(0);
}

.footer-logo {
    text-align: right;
}

.footer-logo-text {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-secondary-logo {
    margin-top: 20px;
    margin-right: 25px;
}

.footer-logo-placeholder {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .metrics-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .metric-number {
        font-size: 150px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .dropdown-menu {
        min-width: 240px;
    }
    
    .zero-barriers-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .header {
        padding: 0 20px;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 117px;
        left: 0;
        right: 0;
        background-color: #112f60;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        box-shadow: none;
        min-width: auto;
        width: calc(100% - 40px);
        padding: 10px 0;
    }
    
    .dropdown-link {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pathway-items {
        flex-direction: column;
        gap: 40px;
    }
    
    .pathway-line {
        display: none;
    }
    
    .image-grid {
        flex-direction: column;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-sectors {
        width: 100%;
    }
}

/* Pathways Page Styles */
.title-blue {
    color: #5ac0ee;
}

.hero-description {
    font-size: 24px;
    color: #112f60;
    max-width: 600px;
    margin-left: 0;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description strong {
    font-weight: 700;
}

.pathways-diagram-section {
    padding: 80px 100px;
    text-align: center;
    background-color: white;
}

.pathways-diagram-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pathways-diagram-wrapper img {
    width: 100%;
    height: auto;
}

.pathway-cards-section {
    padding: 0 100px 60px 100px;
    background-color: white;
}

.pathway-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1700px;
    margin: 0 auto;
}

.pathway-card {
    position: relative;
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-height: 276px;
}

.pathway-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    border-radius: 20px 0 0 20px;
}

.pathway-card-career .pathway-card-accent {
    background-color: #f1941c;
}

.pathway-card-college .pathway-card-accent {
    background-color: #f16499;
}

.pathway-card-entrepreneurship .pathway-card-accent {
    background-color: #6ec598;
}

.pathway-card-military .pathway-card-accent {
    background-color: #5ac0ee;
}

.pathway-card-content {
    margin-left: 50px;
}

.pathway-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pathway-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pathway-card-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.pathway-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #112f60;
}

.which-describes-section {
    padding: 80px 100px;
    text-align: center;
    background-color: white;
}

.which-describes-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #112f60;
    margin-bottom: 50px;
    font-family: 'Jost', sans-serif;
}

.describes-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .cta-question {
    font-size: 20px;
    font-weight: 600;
    color: white;
    background-color: #112f60;
    padding: 20px 40px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

.btn-cta-large {
    width: 600px;
    max-width: 100%;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
    color: white;
}

/* Responsive Styles for Pathways Page */
@media (max-width: 1400px) {
    .pathway-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pathway-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .describes-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .describes-buttons .btn {
        width: 100%;
    }
    
    .btn-cta-large {
        width: 100%;
    }
    
    .pathways-diagram-section,
    .pathway-cards-section,
    .which-describes-section {
        padding: 40px 20px;
    }
}

/* Zero Barriers Page Styles */
.title-green {
    color: #6ec598;
}

.hero-green {
    background-color: rgba(110, 197, 152, 0.1) !important;
}

.zero-barriers-cards-section {
    padding: 60px 100px;
    background: white;
}

.zero-barriers-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1700px;
    margin: 0 auto;
}

.zero-barriers-card {
    position: relative;
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 20px;
    padding: 90px 30px 40px 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.zero-barriers-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background-color: #6ec598;
    border-radius: 20px 0 0 20px;
}

.zero-barriers-card-content {
    margin-left: 0;
}

.zero-barriers-card-title {
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.4;
    background-color: #6ec598;
    border-radius: 20px 20px 0 0;
    padding: 10px 30px;
    height: 70px;
}

.zero-barriers-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zero-barriers-card-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.zero-barriers-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #112f60;
}

.zero-barriers-card-text {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.cta-section .btn-cta-large {
    display: block;
    width: 800px;
    max-width: 100%;
    padding: 0;
    padding: 5px 10px;
    margin: 15px auto;
    color: white;
}

/* Responsive Styles for Zero Barriers Page */
@media (max-width: 1400px) {
    .zero-barriers-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zero-barriers-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .zero-barriers-card-accent {
        width: 32px;
    }
    
    .zero-barriers-card-content {
        margin-left: 50px;
    }
    
    .zero-barriers-cards-section {
        padding: 40px 20px;
    }
}

/* Six Sectors Page Styles */
.title-orange {
    color: #f1941c;
}

.hero-orange {
    background-color: rgba(241, 148, 28, 0.05) !important;
}

.sectors-page-section {
    padding: 60px 100px;
    background: white;
}

.sectors-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1700px;
    margin: 0 auto;
}

.sector-page-card {
    text-align: left;
}

.sector-page-card img {
    width: 100%;
    height: 341px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-page-card:hover img {
   /*
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(17, 47, 96, 0.2);
    */
}

.sector-page-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 10px;
    font-family: "Jost", sans-serif;
}

/* Responsive Styles for Six Sectors Page */
@media (max-width: 1400px) {
    .sectors-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-page-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-page-section {
        padding: 40px 20px;
    }
}

/* Job Seekers Page Styles */
.job-seekers-hero {
    position: relative;
    min-height: 1044px;
    background-image: url('images/stock/health.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(17, 47, 96, 0.8) 0%, rgba(17, 47, 96, 0.5) 50%, transparent 100%);
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-title-white {
    color: white;
    font-size: 38px;
    margin-bottom: 30px;
}

.hero-description-white {
    color: white;
    font-size: 24px;
    font-family: "Jost", sans-serif;
}

.hero-description-white strong {
    font-weight: 700;
}

.hero-description-white em {
    font-style: italic;
}

.pathways-intro-section {
    padding: 60px 100px;
    text-align: center;
    background-color: white;
}

.pathways-intro-text {
    font-size: 24px;
    color: #112f60;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.pathways-intro-text strong {
    font-weight: 700;
}

.pathway-intro-subtext {
    font-size: 16px;
    color: #112f60;
    text-align: center;
    margin-bottom: 40px;
}

.connecting-talent-section {
    padding: 80px 100px;
    background-color: rgba(90, 192, 238, 0.1);
    text-align: center;
}

.connecting-talent-description {
    font-size: 16px;
    color: #000;
    max-width: 765px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.labor-shortages-section {
    max-width: 1400px;
    margin: 0 auto;
}

.labor-shortages-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    line-height: 40px;
}

.bar-chart-container {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0 auto 50px;
}

.bar-chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 16px;
    height: 32px;
    background-color: white;
    padding: 0 20px;
}

.bar-label {
    font-size: 20px;
    font-weight: 600;
    color: #112f60;
    text-transform: uppercase;
    text-align: right;
    min-width: 520px;
    flex-shrink: 0;
}

.bar-wrapper {
    flex: 1;
    height: 32px;
    display: flex;
    align-items: stretch;
}

.bar {
    height: 100%;
    border-radius: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    padding-left: 0;
    overflow: hidden;
    transition: width 1200ms cubic-bezier(0.22, 1, 0.36, 1), padding 300ms ease;
    will-change: width;
}

.connecting-talent-section.is-in-view .bar {
    padding-left: 12px;
}

.bar-blue {
    background-color: #5ac0ee;
}

.bar-orange {
    background-color: #f1941c;
}

.bar-green {
    background-color: #6ec598;
}

.bar-pink {
    background-color: #f16499;
}

.bar-value {
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .bar {
        transition: none !important;
    }
}

.btn-chart {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.workforce-warriors-section {
    padding: 80px 100px;
    background-color: white;
    text-align: center;
}

.warriors-description {
    font-size: 16px;
    color: #000;
    margin-bottom: 50px;
    max-width: 765px;
    margin-left: auto;
    margin-right: auto;
}

.warriors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1700px;
    margin: 0 auto;
}

.warrior-card {
    border-radius: 20px;
    overflow: hidden;
    height: 277px;
    transition: .2s linear all;
}

.warrior-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(17, 47, 96, 0.2);
}

.warrior-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.did-you-know-section {
    position: relative;
    min-height: 600px;
    background-image: url('images/footers/job-seekers.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.did-you-know-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.did-you-know-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 798px;
}

.did-you-know-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    line-height: 1.3;
}

.btn-outline-white {
    background-color: white;
    color: #112f60;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: transparent;
    color: white;
}

/* Responsive Styles for Job Seekers Page */
@media (max-width: 1400px) {
    .bar-label {
        min-width: 250px;
    }
    
    .warriors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .job-seekers-hero,
    .did-you-know-section {
        min-height: 600px;
    }
    
    .bar-chart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        height: auto;
        padding: 12px 20px;
    }
    
    .bar-label {
        min-width: auto;
        width: 100%;
        text-align: left;
    }
    
    .bar-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .warriors-grid {
        grid-template-columns: 1fr;
    }
    
    .pathway-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .connecting-talent-section,
    .workforce-warriors-section,
    .pathways-intro-section {
        padding: 40px 20px;
    }
    
    .btn-chart {
        width: 100%;
    }
}

/* Workforce Partners Page Styles */
.workforce-partners-hero {
    position: relative;
    min-height: 1073px;
    background-image: url('images/stock/construction.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.42);
}

.who-are-partners-section {
    padding: 80px 100px;
}

.partners-section-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: left;
}

.partners-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-column {
    text-align: left;
}

.partners-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partners-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.partners-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #112f60;
    font-weight: bold;
}

.coordinated-effort-section {
    padding: 80px 100px;
    background-color: rgba(110, 197, 152, 0.1);
}

.coordinated-effort-content {
    margin: 0 auto;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
}

.coordinated-effort-content p {
    margin-bottom: 20px;
}

.coordinated-effort-content strong {
    font-weight: 700;
}

.coordinated-effort-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coordinated-effort-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.coordinated-effort-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #112f60;
}

.additional-benefits {
    margin-top: 30px;
}

.partnership-at-work-section {
    padding: 80px 100px;
    background-color: white;
    text-align: center;
}

.partnership-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    flex-wrap: wrap;
}

.partnership-step {
    flex: 1;
    min-width: 280px;
    max-width: 318px;
}

.partnership-circle {
    border-radius: 50%;
    width: 318px;
    height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}

.partnership-circle-blue {
    background-color: #5ac0ee;
}

.partnership-circle-orange {
    background-color: #f1941c;
}

.partnership-circle-pink {
    background-color: #f16499;
}

.partnership-circle p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.partnership-arrow {
    font-size: 48px;
    color: #112f60;
    font-weight: bold;
    flex-shrink: 0;
}

.meeting-seekers-section {
    padding: 80px 100px;
    background-color: rgba(90, 192, 238, 0.1);
    text-align: center;
}

.btn-meeting {
    width: 480px;
    max-width: 100%;
    margin-top: 40px;
}

.sector-strategies-section {
    padding: 80px 100px 120px 80px;
    background-color: white;
}

.strategy-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1700px;
    margin: 60px auto 0;
}

.strategy-card {
    background-color: #f16499;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.strategy-card-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Styles for Workforce Partners Page */
@media (max-width: 1400px) {
    .strategy-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-diagram {
        flex-wrap: wrap;
    }
    
    .partnership-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

@media (max-width: 1024px) {
    .workforce-partners-hero {
        min-height: 600px;
    }
    
    .partners-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnership-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .strategy-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .who-are-partners-section,
    .coordinated-effort-section,
    .partnership-at-work-section,
    .meeting-seekers-section,
    .sector-strategies-section {
        padding: 40px 20px;
    }
    
    .btn-meeting {
        width: 100%;
    }
    
    .partnership-arrow {
        display: none;
    }
    
    .partnership-diagram {
        flex-direction: column;
    }
}

/* Employers Page Styles */
.employers-hero {
    position: relative;
    min-height: 728px;
    background-image: url('images/stock/manufacturing.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

.employers-main-section {
    padding: 80px 100px;
    background-color: white;
    text-align: center;
}

.employers-main-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 24px;
    color: #112f60;
    line-height: 1.6;
}

.employers-main-content p {
    margin: 0;
}

.strategy-practice-section {
    padding: 80px 100px;
    background-color: white;
    text-align: center;
}

.strategy-practice-intro {
    font-size: 16px;
    color: #000;
    margin-bottom: 60px;
    max-width: 811px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-cards-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.strategy-card-three {
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: left;
    position: relative;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-height: 232px;
}

.strategy-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    border-radius: 20px 0 0 20px;
}

.strategy-card-accent.strategy-card-green {
    background-color: #6ec598;
}

.strategy-card-content {
    margin-left: 90px;
}

.strategy-card-three-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.strategy-card-three-text {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.enacting-change-section-wrapper {
    background-color: rgba(110, 197, 152, 0.1);
}

.enacting-change-section {
    padding: 60px 100px;
    max-width: 1100px;
    margin: auto;
}

.enacting-change-section .section-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left;
}

.enacting-change-content {
    max-width: 1099px;
    margin: 0 auto;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.enacting-change-content p {
    margin: 0;
}

.employers-did-you-know-section {
    position: relative;
    min-height: 600px;
    background-image: url('images/footers/employers.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.employers-did-you-know-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.employers-did-you-know-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 861px;
}

.employers-did-you-know-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Styles for Employers Page */
@media (max-width: 1400px) {
    .strategy-cards-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .employers-hero,
    .employers-did-you-know-section {
        min-height: 500px;
    }
    
    .strategy-cards-three {
        grid-template-columns: 1fr;
    }
    
    .strategy-card-accent {
        width: 5px;
        height: 100%;
    }
    
    .strategy-card-content {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .employers-main-section,
    .strategy-practice-section,
    .enacting-change-section {
        padding: 40px 20px;
    }
    
    .employers-main-content {
        font-size: 20px;
    }
    
    .employers-did-you-know-title {
        font-size: 28px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 728px;
    background-image: url('images/stock/town.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.about-main-section {
    padding: 80px 100px;
    background-color: white;
    text-align: center;
}

.about-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 24px;
    color: #112f60;
    line-height: 1.6;
}

.about-content-centered p {
    margin: 0;
}

.about-swib-section {
    padding: 80px 100px;
    background-color: rgba(110, 197, 152, 0.1);
    text-align: center;
}

.about-swib-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.about-swib-content {
    max-width: 811px;
    margin: 0 auto;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.about-swib-content p {
    margin: 0;
}

.about-resources-section {
    padding: 60px 100px;
    max-width: 1100px;
    margin: auto;
    background-color: white;
}

.about-resources-section .section-title {
    font-size: 30px;
    font-weight: 400;
    color: #112f60;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left;
}

.resources-list {
    max-width: 1099px;
    margin: 0 auto;
}

.resource-link {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    display: block;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #112f60;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-main-section,
    .about-swib-section,
    .about-resources-section {
        padding: 40px 20px;
    }
    
    .about-hero {
        min-height: 500px;
        padding: 60px 20px;
    }
    
    .about-content-centered {
        font-size: 20px;
    }
}

.header-number {
    width: 23%;
    padding: 20px 0;
}

.header-title {
    width: 30%;
    padding: 20px 0;
    text-align: left;
}

.header-description {
    width: 45%;
    padding: 20px 0;
    text-align: left;
    margin-left: 5%;
}

/* Mobile layout for hero header elements */
@media (max-width: 768px) {
    .-flex.-flex-center.-space-between {
        flex-wrap: wrap;
    }
    
    .header-number {
        width: 50%;
        flex: 0 0 auto;
        padding: 10px 20px 10px 0;
        margin-right: 0;
    }
    
    .header-title {
        width: auto;
        flex: 1 1 auto;
        padding: 10px 0;
        margin-left: 0;
    }
    
    .header-description {
        width: 100%;
        flex: 1 1 100%;
        padding: 20px 0;
        margin-left: 0;
        order: 3;
    }
}

.-flex {
    display: flex;
}

.-flex-center {
    align-items: center;
}

.-space-between {
    justify-content: space-between;
}

.-space-around {
    justify-content: space-around;
}

.-justify-center {
    justify-content: center;
}

.-justify-end {
    justify-content: flex-end;
}

.-justify-start {
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .show-desktop {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
        margin: 0 auto;
    }
}
@media (min-width: 768px) {
    .show-mobile {
        display: none !important;
    }
}