/* CSS Custom Properties for Dynamic Color Schemes */
:root {
    --primary-color: #0066cc;
    --secondary-color: #0052a3;
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.375rem;
}

/* Navbar - Mobile First */
.main-navbar {
    font-size: 1rem;
    line-height: 1.2;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.main-nav-container {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 35px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #2c3e50;
}

/* Mobile Navigation */
.main-nav-links {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-nav-links.active {
    display: flex;
    left: 0;
}

.main-nav-item {
    margin: 16px 0;
    position: relative;
    list-style: none;
}

.main-nav-item > a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Submenu */
.nav-submenu {
    display: none;
    background-color: rgba(248, 249, 250, 0.95);
    padding: 0;
    margin-top: 10px;
    width: 100%;
    list-style: none;
}

.nav-submenu.show {
    display: block;
}

.nav-submenu li {
    width: 100%;
    list-style: none;
}

.nav-submenu li a {
    padding: 12px 20px;
    color: #2c3e50;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-submenu li a:hover {
    background-color: #0066cc;
    color: white;
}

.main-nav-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Tablet and Desktop Styles */
@media screen and (min-width: 768px) {
    .main-navbar {
        padding: 1rem 0;
    }

    .main-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .hamburger {
        display: none;
    }

    .main-nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 2rem;
        background: none;
        box-shadow: none;
        width: auto;
    }

    .main-nav-item {
        margin: 0;
    }

    .main-nav-item > a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .main-nav-item > a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #2c3e50;
        transition: all 0.3s ease;
    }

    .main-nav-item > a:hover::after {
        width: 100%;
        left: 0;
    }

    /* Desktop Submenu */
    .nav-submenu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        background-color: white;
        min-width: 250px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-radius: 4px;
        padding: 0.5rem 0;
        display: block;
    }

    .main-nav-item:hover .nav-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-submenu li a {
        color: #2c3e50;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        border-left: 4px solid transparent;
    }

    .nav-submenu li a:hover {
        background-color: #f8f9fa;
        color: #0066cc;
        border-left: 4px solid #0066cc;
        padding-left: 2rem;
    }
}

/* Hero Section */
.hero {
    background: var(--hero-gradient) !important;
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-icon {
    flex: 0 0 300px;
    text-align: center;
}

.hero-icon i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.9);
}

/* Icon Boxes */
.icon-boxes {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.icon-box {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.icon-box i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.icon-box h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.icon-box p {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #6c757d;
}

/* Main Content Area */
.content-wrapper {
    background: #ffffff;
    padding: 60px 0;
    margin-top: 80px; /* Space after fixed navbar */
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    min-width: 0; /* Prevents overflow */
}

/* Sidebar (for overview/salary pages) */
.sidebar {
    position: sticky;
    top: 90px; /* Sticks below navbar when scrolling */
    height: fit-content;
}

.sidebar-box {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.sidebar-box h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0066cc;
}

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

.specialty-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.specialty-list li:last-child {
    border-bottom: none;
}

.specialty-list li:hover {
    background: #f8f9fa;
    padding-left: 8px;
    cursor: pointer;
}

.specialty-list i {
    color: #0066cc;
    font-size: 1.2rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.specialty-list span {
    color: #4a5568;
    font-size: 0.95rem;
}

.explore-link {
    display: inline-block;
    margin-top: 16px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.explore-link:hover {
    color: #0052a3;
    transform: translateX(4px);
}

.explore-link i {
    margin-left: 6px;
    font-size: 0.8rem;
}

/* Menu box with button style */
.menu-box {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #667eea;
    position: relative;
}

.menu-box:hover {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.dropdown-hint {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #667eea;
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Wrapper for box + dropdown */
.box-wrapper {
    position: relative;
    align-self: start;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
}

/* Salary Chart Styling */
.salary-section {
    margin-bottom: 60px;
    padding: 60px 20px;
}

.salary-section h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
}

.salary-section p {
    margin-bottom: 20px;
    color: #4a5568;
}

.salary-section .chart-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    max-width: 100%;
}

.salary-section .chart-container h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.salary-section .chart-container canvas {
    width: 100% !important;
    height: 300px !important;
    max-width: none;
}

.salary-section .salary-controls {
    margin: 24px 0;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.salary-section .salary-controls label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.salary-section .salary-controls select {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    font-size: 1rem;
    font-family: 'Sora', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.salary-section .salary-controls select:hover {
    border-color: #0066cc;
}

.salary-section .salary-controls select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.salary-section #stateChartContainer canvas {
    max-width: 1000px;
    max-height: 350px;
}

.icon {
    width: 300px;
    height: 300px;
    max-width: 100%;
    max-height: 100%;
}

/* ================================================
   HOW TO BECOME PAGE SPECIFIC STYLES
   ================================================ */

.how-to-page {
    background: #ffffff;
    padding: 40px 20px;
}

.how-to-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Two Column Layout for How To Page */
.how-to-page .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 2rem;
    padding: 0;
    background: transparent;
}

.how-to-page .main-content {
    min-width: 0; /* Prevents grid blowout */
}

.how-to-page .sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.how-to-page h1 {
    line-height: 1.2;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.how-to-page h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
}

.how-to-page h3 {
    line-height: 1.2;
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.how-to-page .intro-text {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

/* Sidebar Styles for How To Page */
.how-to-page .sidebar-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.how-to-page .clinical-hours-hero {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    border-radius: 8px;
    color: white;
    margin-bottom: 2rem;
}

.how-to-page .clinical-hours-hero .big-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.how-to-page .clinical-hours-hero .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

.how-to-page .clinical-hours-hero .detail {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.how-to-page .clinical-breakdown {
    margin-top: 1.5rem;
}

.how-to-page .clinical-breakdown h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.how-to-page .clinical-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.how-to-page .clinical-item:hover {
    background: #e5f2ff;
    transform: translateX(4px);
}

.how-to-page .clinical-icon {
    font-size: 1.8rem;
    color: #0066cc;
    min-width: 40px;
    text-align: center;
}

.how-to-page .clinical-info h5 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.how-to-page .clinical-info p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

.how-to-page .clinical-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.how-to-page .stat-box {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.how-to-page .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
}

.how-to-page .stat-label {
    font-size: 0.85rem;
    color: #4a5568;
    margin-top: 0.25rem;
}

/* Timeline Styles */
.how-to-page .timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.how-to-page .timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e5e7eb;
}

.how-to-page .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.how-to-page .timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s ease;
}

.how-to-page .timeline-item.active .timeline-icon {
    background: #0066cc;
    color: white;
    transform: scale(1.1);
}

.how-to-page .timeline-card {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-to-page .timeline-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.how-to-page .timeline-item.active .timeline-card {
    border-color: #0066cc;
    background: white;
}

.how-to-page .timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.how-to-page .timeline-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.how-to-page .timeline-title h3 {
    margin: 0;
}

.how-to-page .timeline-duration {
    background: #0066cc;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.how-to-page .timeline-expand-icon {
    font-size: 1.5rem;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.how-to-page .timeline-item.active .timeline-expand-icon {
    transform: rotate(180deg);
    color: #0066cc;
}

.how-to-page .timeline-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.how-to-page .timeline-item.active .timeline-content {
    max-height: 2000px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.how-to-page .timeline-content p {
    margin-bottom: 0.75rem;
}

.how-to-page .timeline-content ul {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.how-to-page .timeline-content li {
    margin-bottom: 0.5rem;
}

/* FAQ Accordion Styles */
.how-to-page .faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.how-to-page .faq-item {
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.how-to-page .faq-item:hover {
    border-color: #0066cc;
}

.how-to-page .faq-item.active {
    border-color: #0066cc;
}

.how-to-page .faq-question {
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.how-to-page .faq-item:hover .faq-question {
    background: #e5f2ff;
}

.how-to-page .faq-item.active .faq-question {
    background: white;
}

.how-to-page .faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.how-to-page .faq-question i {
    color: #0066cc;
}

.how-to-page .faq-toggle {
    font-size: 1.5rem;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.how-to-page .faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #0066cc;
}

.how-to-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.how-to-page .faq-item.active .faq-answer {
    max-height: 2000px;
}

.how-to-page .faq-answer-content {
    padding: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

/* Info Box */
.how-to-page .info-box {
    background: #e5f2ff;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.how-to-page .info-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.how-to-page .info-box i {
    color: #0066cc;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .icon-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .chart-container {
        min-width: 0;
    }

    /* How To Page Responsive */
    .how-to-page .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-to-page .sidebar {
        position: static;
        order: 2;
    }

    .how-to-page .main-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .how-to-page .container {
        padding: 20px;
    }

    .how-to-page h1 {
        font-size: 2rem;
    }

    .how-to-page h2 {
        font-size: 1.5rem;
    }

    .how-to-page .timeline::before {
        left: 20px;
    }

    .how-to-page .timeline-item {
        padding-left: 60px;
    }

    .how-to-page .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .how-to-page .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .how-to-page .timeline-duration {
        font-size: 0.85rem;
    }

    .how-to-page .clinical-hours-hero .big-number {
        font-size: 3rem;
    }

    .how-to-page .clinical-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .icon-boxes {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   SPECIALTIES SECTION STYLES
   ================================================ */

.specialties-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

.specialties-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.specialties-section .section-header h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
}

.specialties-section .section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.specialties-section .specialties-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.specialties-section .specialties-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.specialties-section .specialty-card {
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.specialties-section .specialty-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.specialties-section .specialty-card.active {
    border-color: #0066cc;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
}

.specialties-section .specialty-header {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 20px;
}

.specialties-section .specialty-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.specialties-section .specialty-card.active .specialty-icon {
    transform: scale(1.1);
}

.specialties-section .specialty-title-area {
    flex: 1;
}

.specialties-section .specialty-title-area h3 {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 4px;
    font-weight: 600;
}

.specialties-section .specialty-hint {
    font-size: 0.9rem;
    color: #6c757d;
}

.specialties-section .specialty-chevron {
    font-size: 20px;
    color: #0066cc;
    transition: transform 0.3s ease;
}

.specialties-section .specialty-card.active .specialty-chevron {
    transform: rotate(180deg);
}

.specialties-section .specialty-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.specialties-section .specialty-card.active .specialty-content {
    max-height: 600px;
    padding: 0 24px 24px 24px;
}

.specialties-section .specialty-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.specialties-section .specialty-requirements {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.specialties-section .specialty-requirements strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.specialties-section .specialty-requirements ul {
    margin-left: 20px;
    color: #4a5568;
}

.specialties-section .specialty-requirements li {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.specialties-section .specialties-insight {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.specialties-section .specialties-insight h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
    font-size: 1.8rem;
    font-weight: 600;
}

.specialties-section .specialties-insight p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.specialties-section .specialties-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.specialties-section .sidebar-card,
.specialties-section .chart-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specialties-section .sidebar-card h3,
.specialties-section .chart-card h3 {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 600;
}

.specialties-section .stat-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.specialties-section .stat-item:last-child {
    border-bottom: none;
}

.specialties-section .stat-label {
    font-size: 0.95rem;
    color: #4a5568;
}

.specialties-section .stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.specialties-section .chart-container {
    height: 260px;
    position: relative;
    width: 100%;
}

.specialties-section .chart-container canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.specialties-section .info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.specialties-section .info-box i {
    font-size: 36px;
    margin-bottom: 12px;
}

.specialties-section .info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.specialties-section .info-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Styles for Specialties Section */
@media (max-width: 968px) {
    .specialties-section .specialties-container {
        grid-template-columns: 1fr;
    }
    
    .specialties-section .specialties-sidebar {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .specialties-section .chart-container {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .specialties-section {
        padding: 20px 12px;
    }
    
    .specialties-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .specialties-section .specialty-header {
        padding: 18px 14px;
    }
    
    .specialties-section .specialty-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .specialties-section .specialty-title-area h3 {
        font-size: 1.1rem;
    }
    
    .specialties-section .specialties-insight {
        padding: 24px 20px;
    }
    
    .specialties-section .specialties-insight h2 {
        font-size: 1.5rem;
    }
    
    .specialties-section .sidebar-card,
    .specialties-section .chart-card {
        padding: 24px 20px;
    }
    
    .specialties-section .chart-container {
        height: 250px;
    }
}

/* ================================================
   SCHOOLS SECTION STYLES
   ================================================ */

/* ===================================
   SCHOOLS SECTION - Complete Styles
   =================================== */

.schools-section {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #4a5568;
}

/* Outer Container (White Box) */
.schools-section-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Typography */
.schools-section h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0066cc;
}

.schools-section h2 {
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
}

/* Intro Text */
.schools-section .intro-text {
    margin-bottom: 30px;
}

.schools-section .intro-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5568;
}

/* ===================================
   GRID LAYOUT: FAQ + Search | Sidebar
   =================================== */

.schools-section .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.schools-section .left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===================================
   FAQ ACCORDION SECTION
   =================================== */

.schools-section .pathways-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.schools-section .pathway-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.schools-section .pathway-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.schools-section .pathway-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.schools-section .pathway-header:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a4091 100%);
}

.schools-section .pathway-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.schools-section .pathway-item.active .pathway-icon {
    transform: rotate(180deg);
}

.schools-section .pathway-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: white;
}

.schools-section .pathway-item.active .pathway-content {
    max-height: 700px;
    padding: 5px;
}

.schools-section .pathway-content p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.schools-section .pathway-content ul {
    margin: 10px 0 10px 20px;
}

.schools-section .pathway-content li {
    margin-bottom: 8px;
}

/* ===================================
   SEARCH COMPONENT
   =================================== */

.schools-section .search-component {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.schools-section .search-component h2 {
    margin-top: 0;
}

/* Basic Search Input */
.schools-section .search-container {
    margin-bottom: 20px;
}

.schools-section .search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
}

.schools-section .search-input:focus {
    outline: none;
    border-color: #007bff;
}

/* Advanced Search */
.schools-section .advanced-search {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.schools-section .advanced-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
}

.schools-section .advanced-title:hover {
    color: #1f2d3a;
}

.schools-section .advanced-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 6px;
    background: white;
    margin-bottom: 16px;
}

.schools-section .field {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
}

.schools-section .field label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.schools-section .field input[type="text"],
.schools-section .field input[type="number"] {
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: 'Sora', sans-serif;
}

.schools-section .field input:focus {
    outline: none;
    border-color: #007bff;
}

.schools-section .field input:disabled {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Filter Button */
.schools-section .filter-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.schools-section .filter-btn:hover {
    background-color: #0056b3;
}

/* Checkbox Group */
.schools-section .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.schools-section .checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #2c3e50;
    cursor: pointer;
    margin: 0;
    width: fit-content;
}

.schools-section .checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.schools-section .checkbox-label:hover {
    color: #1f2d3a;
}

/* Filter Icon */
.schools-section .filter-icon {
    display: inline-flex;
    flex-direction: column;
    width: 16px;
    height: 12px;
    margin-right: 8px;
    position: relative;
}

.schools-section .filter-icon::before,
.schools-section .filter-icon::after {
    content: '';
    height: 2px;
    background-color: #6c757d;
    border-radius: 1px;
    position: absolute;
}

.schools-section .filter-icon::before {
    width: 16px;
    top: 0;
}

.schools-section .filter-icon::after {
    width: 12px;
    top: 5px;
}

.schools-section .filter-icon .middle-line {
    height: 2px;
    width: 8px;
    background-color: #6c757d;
    border-radius: 1px;
    position: absolute;
    top: 10px;
}

/* Results Info */
.schools-section .results-info {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.schools-section #resultsCount {
    color: #007bff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Program Cards Container */
.schools-section .programs-container {
    display: none;
}

/* Program Cards */
.schools-section .program-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.schools-section .program-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schools-section .card-header {
    width: 100%;
    padding: 12px 16px;
    background: white;
    color: #2c3e50;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.schools-section .card-header:hover {
    background: #f8f9fa;
}

.schools-section .card-header.active {
    background: #f8f9fa;
}

.schools-section .card-toggle {
    font-size: 1rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.schools-section .card-header.active .card-toggle {
    transform: rotate(180deg);
}

.schools-section .card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    padding: 0;
}

.schools-section .card-body.active {
    max-height: 600px;
    padding: 12px 16px;
}

.schools-section .detail-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.schools-section .detail-row:last-child {
    margin-bottom: 0;
}

.schools-section .detail-label {
    font-weight: 600;
    color: #2c3e50;
}

.schools-section .detail-value {
    color: #4a5568;
}

.schools-section .detail-value a {
    color: #007bff;
    text-decoration: none;
}

.schools-section .detail-value a:hover {
    text-decoration: underline;
}

/* Pagination */
.schools-section .pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0 10px 0;
    flex-wrap: wrap;
}

.schools-section .pagination-btn {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schools-section .pagination-btn:hover:not(:disabled) {
    background: #0056b3;
}

.schools-section .pagination-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.schools-section .pagination-info {
    color: #6c757d;
    font-size: 0.85rem;
}

.schools-section #pageSize {
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
}

/* Empty States */
.schools-section .no-results,
.schools-section .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 0.9rem;
    background-color: white;
    border-radius: 12px;
    border: 2px solid #f8f9fa;
}

/* ===================================
   SIDEBAR (Right Column)
   =================================== */

.schools-section .sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    height: fit-content;
}

.schools-section .sidebar h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.schools-section .sidebar .subtitle {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-style: italic;
}

.schools-section .sidebar .section-header {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.schools-section .benefit-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.schools-section .benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.schools-section .benefit-title {
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schools-section .benefit-icon {
    font-size: 1.2rem;
}

.schools-section .benefit-text {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
}

.schools-section .verify-button {
    display: block;
    width: 100%;
    background: white;
    color: #667eea;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.schools-section .verify-button:hover {
    background: #FFD700;
    color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* ===================================
   LIGHTBULB COMPONENT (Full Width)
   =================================== */

.schools-section .lightbulb-container {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 200px;
    margin: 40px 0;
}

.schools-section .lightbulb-icon {
    font-size: 6rem;
    flex-shrink: 0;
    animation: schools-pulse 2s ease-in-out infinite;
}

@keyframes schools-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.schools-section .lightbulb-content {
    flex: 1;
    position: relative;
}

.schools-section .lightbulb-fact {
    display: none;
    animation: schools-fadeIn 0.5s ease;
}

.schools-section .lightbulb-fact.active {
    display: block;
}

.schools-section .lightbulb-fact h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.schools-section .lightbulb-fact p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.schools-section .lightbulb-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.schools-section .lightbulb-nav button {
    background: white;
    border: 2px solid #fdcb6e;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.schools-section .lightbulb-nav button:hover {
    background: #fdcb6e;
    color: white;
}

@keyframes schools-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE: MOBILE & TABLET
   =================================== */

/* Tablet/Smaller Desktop */
@media (max-width: 850px) {
    .schools-section .content-grid {
        grid-template-columns: 1fr;
    }
    
    .schools-section .left-column {
        order: 1;
    }
    
    .schools-section .sidebar {
        order: 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .schools-section-container {
        padding: 25px;
    }

    .schools-section h1 {
        font-size: 2rem;
    }

    .schools-section h2 {
        font-size: 1.5rem;
    }

    .schools-section .lightbulb-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .schools-section .lightbulb-icon {
        font-size: 4rem;
    }
}

/* Mobile Search Component Adjustments */
@media (max-width: 600px) {
    .schools-section .advanced-fields {
        flex-direction: column;
    }
    
    .schools-section .field {
        flex: 1 1 100%;
    }
    
    .schools-section .detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .schools-section .detail-label {
        font-weight: 700;
        margin-bottom: 2px;
    }
    
    .schools-section .detail-value {
        margin-bottom: 10px;
    }
    
    .schools-section .card-header {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    
    .schools-section .card-body {
        font-size: 0.85rem;
        padding: 0;
    }

    .schools-section .card-body.active {
        padding: 10px 12px;
    }
    
    .schools-section .pagination-controls {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
  .how-to-page .container {
    padding: 1rem;
  }

  .how-to-page .container {
    padding: 0;
    min-width: 0;
      overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  }

  .how-to-page p {
    line-height: 1.6;
  }
}



/* ================================================
   OPTION 2: COMPASSIONATE PURPLE-BLUE
   Occupational Therapist - Creative & Professional
   ================================================ */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%) !important;
}

/* Primary Accent Color (icons, links, decorative elements only) */
.icon-box i,
.specialty-list i,
.explore-link,
.main-nav-item > a:hover::after,
.how-to-page .clinical-icon,
.how-to-page .stat-number,
.how-to-page .faq-question i,
.specialties-section .specialty-chevron,
.specialties-section .stat-value,
.schools-section #resultsCount,
.schools-section .detail-value a {
    color: #6366F1;
}

/* Primary Backgrounds */
.how-to-page .clinical-hours-hero,
.how-to-page .timeline-duration,
.specialties-section .specialty-icon,
.schools-section .sidebar,
.schools-section .filter-btn,
.schools-section .pagination-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.schools-section .filter-btn:hover,
.schools-section .pagination-btn:hover:not(:disabled) {
    background: #4F46E5;
}

/* Borders & Underlines */
.sidebar-box h3,
/* .salary-section h2, */
.how-to-page .timeline-icon,
.how-to-page .timeline-card,
.how-to-page .faq-item,
.specialties-section .specialties-insight h2,
.specialties-section .sidebar-card h3,
.specialties-section .chart-card h3 {
    border-color: #6366F1;
}

.how-to-page .timeline-item.active .timeline-icon {
    background: #6366F1;
    border-color: #6366F1;
}

.how-to-page .timeline-card:hover,
.how-to-page .faq-item:hover,
.how-to-page .faq-item.active,
.specialties-section .specialty-card:hover,
.specialties-section .specialty-card.active {
    border-color: #6366F1;
}

/* Light Backgrounds */
.how-to-page .info-box,
.how-to-page .clinical-item:hover {
    background: #EEF2FF;
}

/* Secondary Accent (Hover States) */
.explore-link:hover,
.nav-submenu li a:hover,
.menu-box:hover,
.how-to-page .timeline-item.active .timeline-expand-icon,
.how-to-page .faq-item.active .faq-toggle,
.specialties-section .specialty-card.active .specialty-chevron {
    color: #8B5CF6;
}

/* Icon Box Menu Styling */
.menu-box {
    border-color: #6366F1;
}

.dropdown-hint {
    background: #6366F1;
}

/* Info Boxes & Special Callouts */
.specialties-section .info-box {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

/* Dropdown Menu Hovers */
.dropdown-menu a:hover {
    color: #6366F1;
}

/* Clinical Item Borders */
.how-to-page .clinical-item {
    border-left-color: #6366F1;
}

/* Lightbulb Component */
.schools-section .lightbulb-container {
    background: linear-gradient(135deg, #E0E7FF 0%, #DDD6FE 100%);
}

.schools-section .lightbulb-nav button {
    border-color: #A5B4FC;
}

.schools-section .lightbulb-nav button:hover {
    background: #8B5CF6;
}

/* Sidebar Accent Color - Keep as yellow/gold for contrast */
.schools-section .sidebar h3 {
    color: #FDE047;
}

.schools-section .sidebar .section-header {
    color: #FDE047;
}

/* Chart borders and accents */
.salary-section .chart-container {
    border-color: #A5B4FC;
}

/* Program Card Hover */
.schools-section .program-card:hover {
    border-color: #6366F1;
}

.schools-section .pathway-item:hover {
    border-color: #6366F1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.schools-section .pathway-header {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.schools-section .pathway-header:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

/* =================BEGIN FOOTER============================================== */

footer{
    bottom: 0px;
    width: 100%;
    background: #2c3e50;
    color: #c7c7c7;
 /*   margin-bottom: 60px; */
}


.main-footer{
    display: flex;
}

.main-footer .box{
    flex-basis: 50%;
    padding: 10px 20px;
}

.box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.box .content{
    margin: 20px 0 0 0;
    position: relative;
}

.box .content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}

.box .content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #f12020;
    top: -10px;
}

.content a{
    color: #fff;
    text-decoration: none;
}

.content a:hover{
    color: #fff;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN LEFT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.left .content .social{
    margin: 20px 0 0 0;
}

.left .content .social a {
    display: inline-block;
    margin: 6px;   /* more space between touch targets */
}

.left .content .social a span {
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 20px; /* scale icon slightly */
    background: #1a1a1a;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    color: #fff;
}
.left .content .social a span:hover{
    background: #f12020;
}

.left .content p{
    text-align: justify;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END LEFT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN CENTER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.center .content .fas{
    font-size: 1.4375rem;
    background: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.center .content .fas:hover{
    background: #f12020;
}

.center .content .text{
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
}

.center .content .phone{
    margin: 10px 0;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END CENTER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN RIGHT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.right form .text{
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
}

.right form .msg{
    margin-top: 10px;
}

.right form input, .right form textarea{
    width: 100%;
    font-size:  1.0625rem;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
}

.right form input:focus, 
.right form textarea:focus{
    outline-color: #3498db;
}

.right form input{
    height: 35px;
}

.right form .btn{
    margin-top: 10px;
}

.right form .btn button{
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #f12020;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.right form .btn button:hover{
  background: #000;  
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END RIGHT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.bottom center{
    padding: 5px;
    font-size: 0.9375rem;
    background: #151515;
}

.bottom center span{
    color: #656565;
}

.bottom center a{
    color: #f12020;
    text-decoration: none;
}

.bottom center a:hover{
    color: #f12020;
    text-decoration: underline;
}

@media screen and (max-width: 900px){
    footer{
        /* position: relative; */
        bottom: 0px;
    }

    .main-footer{
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-footer .box{
        margin: 5px 0;
    }
}

/* Accessibility overrides */
footer, footer a, footer span, .bottom center span {
  color: #fff !important;
}





