/* source: ai-solutions-corporates.blade.php */


    /* --- Reset & Variables --- */
    .ai-solutions-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-cyan: #0891b2; /* Cyan 600 */
        --accent-hover: #0e7490; /* Cyan 700 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .ai-solutions-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .ai-solutions-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .ai-solutions-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-cyan);
        color: white;
        box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(8, 145, 178, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(8, 145, 178, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-cyan);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        background-color: var(--bg-card);
        padding: 0.5rem;
        border-radius: 6px;
        color: var(--accent-cyan);
        margin-right: 1rem;
        border: 1px solid var(--border-color);
    }

    h2 {
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    p {
        margin-bottom: 1.5rem;
        color: var(--text-main);
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-cyan);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Case Study Cards */
    .case-study-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .case-study-card:hover {
        border-color: var(--accent-cyan);
    }

    .client-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        color: #94a3b8;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .meta-tag {
        background-color: rgba(255,255,255,0.05);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .problem-solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .ps-box {
        padding: 1.5rem;
        border-radius: 8px;
        height: 100%;
    }

    .problem-box {
        background-color: rgba(239, 68, 68, 0.05); /* Red tint */
        border: 1px solid rgba(239, 68, 68, 0.1);
    }

    .solution-box {
        background-color: rgba(8, 145, 178, 0.05); /* Cyan tint */
        border: 1px solid rgba(8, 145, 178, 0.1);
    }

    .box-label {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        display: block;
    }

    .problem-label { color: #ef4444; }
    .solution-label { color: var(--accent-cyan); }

    .case-image {
        width: 100%;
        height: auto;
        /* background-color: #1e293b; */
        border-radius: 8px;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        font-size: 0.9rem;
        border: 1px solid var(--border-color);
        overflow: hidden;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
        .problem-solution-grid { grid-template-columns: 1fr; }
    }


/* source: ai-training-corporates.blade.php */


    /* --- Reset & Variables --- */
    .corporate-training-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-gold: #eab308; /* Yellow 500 */
        --accent-hover: #ca8a04; /* Yellow 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .corporate-training-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .corporate-training-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .corporate-training-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: black; /* Better contrast on gold */
        box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(234, 179, 8, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-gold);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        background-color: var(--bg-card);
        padding: 0.5rem;
        border-radius: 6px;
        color: var(--accent-gold);
        margin-right: 1rem;
        border: 1px solid var(--border-color);
    }

    h2 {
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    p {
        margin-bottom: 1.5rem;
        color: var(--text-main);
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-gold);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Program Cards */
    .program-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        position: relative;
        margin-bottom: 2rem;
        overflow: hidden;
    }

    .program-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: var(--accent-gold);
    }

    .program-meta {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        color: #94a3b8;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .meta-icon {
        color: var(--accent-gold);
    }

    .who-for-box {
        background-color: rgba(234, 179, 8, 0.05);
        border: 1px solid rgba(234, 179, 8, 0.2);
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .curriculum-list {
        list-style: none;
        padding: 0;
    }

    .curriculum-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        color: #cbd5e1;
        font-size: 0.95rem;
    }

    .check-icon {
        color: var(--accent-gold);
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

    .phase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .phase-card {
        background-color: rgba(255,255,255,0.03);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    .phase-badge {
        display: inline-block;
        background-color: rgba(234, 179, 8, 0.1);
        color: var(--accent-gold);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #7c2d12 0%, #9a3412 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
    }


/* source: b2b-partnership.blade.php */


    /* --- Reset & Variables --- */
    .b2b-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-gold: #fbbf24; /* Amber 400 */
        --accent-hover: #d97706; /* Amber 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .b2b-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .b2b-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .b2b-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: #0f172a;
        box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(251, 191, 36, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-gold);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-gold);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        transition: all 0.3s;
    }

    .feature-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
    }

    .feature-icon {
        font-size: 2rem;
        color: var(--accent-gold);
        margin-bottom: 1rem;
        display: block;
    }

    .feature-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
    }


/* source: computer-vision-research.blade.php */


    /* --- Reset & Variables --- */
    .cv-research-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-green: #10b981; /* Emerald 500 */
        --accent-hover: #059669; /* Emerald 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .cv-research-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .cv-research-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .cv-research-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-green);
        color: white;
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--accent-green);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #6ee7b7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Stats/Objectives Section --- */
    .stats-bar {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(15, 23, 42, 0.5);
        padding: 3rem 0;
        margin-bottom: 6rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--accent-green);
        margin-bottom: 1rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Feature Grid --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--accent-green);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    /* --- Curriculum Timeline --- */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: var(--border-color);
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 4rem;
        position: relative;
        width: 100%;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        background-color: var(--accent-green);
        border: 4px solid var(--bg-dark);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 24px;
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    }

    .timeline-content {
        width: 45%;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        border-color: var(--accent-green);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 28px;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
        text-align: right;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent var(--border-color);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:hover::after {
        border-color: transparent transparent transparent var(--accent-green);
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }

    .timeline-item:nth-child(even) .timeline-content:hover::after {
        border-color: transparent var(--accent-green) transparent transparent;
    }

    .week-badge {
        display: inline-block;
        background-color: rgba(16, 185, 129, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent-green);
        margin-bottom: 0.75rem;
        border: 1px solid rgba(16, 185, 129, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lecture-title {
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .lecture-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .topic-list {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        padding: 0;
    }
    
    .timeline-item:nth-child(odd) .topic-list {
        text-align: right;
    }

    .topic-list li {
        margin-bottom: 0.25rem;
        display: inline-block;
        background: rgba(255,255,255,0.05);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        margin-right: 0.25rem;
    }

    /* --- Pricing --- */
    .pricing-section {
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
        background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-green);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        position: relative;
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
    }

    .price-tag {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin: 1rem 0;
    }

    .pricing-features {
        text-align: left;
        margin: 2rem 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .check-icon {
        color: var(--accent-green);
        margin-right: 0.5rem;
    }

    /* --- FAQ --- */
    .faq-item {
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 0;
    }

    .faq-question {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #064e3b 0%, #065f46 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .stats-grid { grid-template-columns: 1fr 1fr; }
        .feature-grid { grid-template-columns: 1fr; }
        .timeline::before { left: 20px; }
        .timeline-item { flex-direction: column; align-items: flex-start; margin-left: 0; padding-left: 50px; }
        .timeline-dot { left: 20px; transform: translateX(-50%); }
        .timeline-content { width: 100% !important; text-align: left !important; margin: 0 !important; }
        .timeline-item:nth-child(odd) .topic-list { text-align: left; }
        .timeline-content::after {
            top: 28px;
            left: -10px !important;
            right: auto !important;
            border-width: 10px 10px 10px 0 !important;
            border-color: transparent var(--border-color) transparent transparent !important;
        }
        .timeline-content:hover::after {
            border-color: transparent var(--accent-green) transparent transparent !important;
        }
    }


/* source: do-labs.blade.php */


    /* --- Reset & Variables --- */
    .dolabs-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-teal: #2dd4bf; /* Teal 400 */
        --accent-hover: #14b8a6; /* Teal 500 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .dolabs-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .dolabs-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .dolabs-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-teal);
        color: #0f172a;
        box-shadow: 0 4px 14px rgba(45, 212, 191, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 212, 191, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(45, 212, 191, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-teal);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-teal);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Lab Cards */
    .lab-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lab-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

    .lab-card:hover {
        border-color: var(--accent-teal);
        transform: translateY(-5px);
    }

    .lab-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .lab-icon {
        font-size: 2rem;
        color: var(--accent-teal);
        background: rgba(45, 212, 191, 0.1);
        padding: 1rem;
        border-radius: 12px;
        margin-right: 1.5rem;
    }

    .lab-title-group {
        flex-grow: 1;
    }

    .lab-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .lab-motto {
        font-size: 1rem;
        color: var(--accent-teal);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lab-client {
        font-size: 0.85rem;
        color: #94a3b8;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
    }

    .lab-client i { margin-right: 0.5rem; }

    .lab-projects {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .project-box {
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        padding: 1.25rem;
        border-radius: 8px;
        transition: 0.3s;
    }

    .project-box:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: #475569;
    }

    .project-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Added to push badge to right */
    }

    .project-name i {
        color: var(--accent-teal);
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }

    /* Added Coming Soon Badge */
    .coming-soon-tag {
        font-size: 0.65rem;
        background-color: rgba(255, 255, 255, 0.1);
        color: #94a3b8;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 600;
        white-space: nowrap;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .project-desc {
        font-size: 0.9rem;
        color: #cbd5e1;
        line-height: 1.5;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
        .lab-header { flex-direction: column; align-items: flex-start; }
        .lab-icon { margin-bottom: 1rem; margin-right: 0; }
    }


/* source: events.blade.php */


    /* --- Reset & Variables --- */
    .events-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-gold: #eab308; /* Yellow 500 */
        --accent-hover: #ca8a04; /* Yellow 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .events-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .events-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .events-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: black;
        box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(234, 179, 8, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-gold);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        background-color: var(--bg-card);
        padding: 0.5rem;
        border-radius: 6px;
        color: var(--accent-gold);
        margin-right: 1rem;
        border: 1px solid var(--border-color);
    }

    h2 {
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    /* --- Event Cards --- */
    .event-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    .event-card.featured {
        border-color: var(--accent-gold);
        box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
    }

    .event-card.featured::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: var(--accent-gold);
    }

    .event-status {
        display: inline-block;
        background-color: rgba(234, 179, 8, 0.1);
        color: var(--accent-gold);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 1rem;
        letter-spacing: 0.05em;
    }

    .event-status.past {
        background-color: rgba(148, 163, 184, 0.1);
        color: #94a3b8;
    }

    .event-title {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .event-subtitle {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin-bottom: 1.5rem;
    }

    .event-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: white;
    }

    .meta-item i {
        color: var(--accent-gold);
    }

    .instructor-box {
        display: flex;
        align-items: center;
        gap: 1rem;
        background-color: rgba(255, 255, 255, 0.03);
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
    }

    .instructor-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #1e293b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #64748b;
    }

    /* --- Agenda Timeline --- */
    .agenda-list {
        list-style: none;
        padding: 0;
        border-left: 2px solid var(--border-color);
        margin-left: 1rem;
    }

    .agenda-item {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 2rem;
    }

    .agenda-item::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--bg-card);
        border: 2px solid var(--accent-gold);
    }

    .time-slot {
        font-size: 0.85rem;
        color: var(--accent-gold);
        font-weight: 700;
        margin-bottom: 0.25rem;
        display: block;
    }

    .session-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .session-desc {
        font-size: 0.9rem;
        color: #94a3b8;
    }

    .break-item::before {
        border-color: #64748b;
    }

    .break-item .time-slot {
        color: #64748b;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
    }


/* source: gen-ai-professionals.blade.php */


    /* --- Reset & Variables --- */
    .gen-ai-prof-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-orange: #f97316; /* Orange 500 */
        --accent-hover: #ea580c; /* Orange 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .gen-ai-prof-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .gen-ai-prof-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .gen-ai-prof-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-orange);
        color: white;
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(249, 115, 22, 0.1);
        color: var(--accent-orange);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(249, 115, 22, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #fdba74);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Objectives Grid (Integrated Design) --- */
    .objectives-section {
        background-color: #1e293b; /* Darker bar background */
        padding: 4rem 0;
        margin-bottom: 4rem;
        text-align: center;
    }

    .objectives-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .objective-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .objective-icon {
        font-size: 1.5rem;
        color: var(--accent-orange);
        margin-bottom: 1rem;
        border: 1px solid var(--accent-orange);
        padding: 0.75rem;
        border-radius: 8px; /* Square with rounded corners like screenshot */
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .objective-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .objective-desc {
        font-size: 0.9rem;
        color: #94a3b8;
        max-width: 200px;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Curriculum Timeline --- */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: var(--border-color);
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 4rem;
        position: relative;
        width: 100%;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        background-color: var(--accent-orange);
        border: 4px solid var(--bg-dark);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 24px;
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
    }

    .timeline-content {
        width: 45%;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        border-color: var(--accent-orange);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 28px;
        width: 0;
        height: 0;
        border-style: solid;
    }

    /* Left Side Items */
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
        text-align: right;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent var(--border-color);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:hover::after {
        border-color: transparent transparent transparent var(--accent-orange);
    }

    /* Right Side Items */
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }

    .timeline-item:nth-child(even) .timeline-content:hover::after {
        border-color: transparent var(--accent-orange) transparent transparent;
    }

    .topic-badge {
        display: inline-block;
        background-color: rgba(249, 115, 22, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent-orange);
        margin-bottom: 0.75rem;
        border: 1px solid rgba(249, 115, 22, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lecture-title {
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .lecture-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .topic-list {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        padding: 0;
    }
    
    .timeline-item:nth-child(odd) .topic-list {
        text-align: right;
    }

    .topic-list li {
        margin-bottom: 0.25rem;
        display: inline-block;
        background: rgba(255,255,255,0.05);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        margin-right: 0.25rem;
    }

    /* --- Project Highlights --- */
    .project-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .project-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
        transition: 0.3s;
    }

    .project-card:hover {
        border-color: var(--accent-orange);
        transform: translateY(-5px);
    }

    .project-icon {
        font-size: 2.5rem;
        color: var(--accent-orange);
        margin-bottom: 1.5rem;
    }

    /* --- Pricing --- */
    .pricing-section {
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

    .pricing-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        position: relative;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        border-color: var(--accent-orange);
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        border-color: var(--accent-orange);
        background-color: rgba(15, 23, 42, 0.8);
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
    }

    .best-value-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent-orange);
        color: white;
        padding: 0.25rem 1rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .plan-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.5rem;
    }

    .plan-price {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        margin: 1rem 0;
    }

    .plan-provider {
        font-size: 0.8rem;
        color: #64748b;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
    }

    .pricing-features {
        text-align: left;
        margin-bottom: 2rem;
        flex-grow: 1;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        color: #cbd5e1;
    }

    .check-icon {
        color: var(--accent-orange);
        margin-right: 0.75rem;
        margin-top: 0.25rem;
    }

    .pricing-cta {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        font-weight: 600;
        transition: 0.3s;
        margin-top: auto;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #7c2d12 0%, #9a3412 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .objectives-grid { grid-template-columns: 1fr 1fr; }
        .project-grid { grid-template-columns: 1fr; }
        .timeline::before { left: 20px; }
        .timeline-item { flex-direction: column; align-items: flex-start; margin-left: 0; padding-left: 50px; }
        .timeline-dot { left: 20px; transform: translateX(-50%); }
        .timeline-content { width: 100% !important; text-align: left !important; margin: 0 !important; }
        .timeline-item:nth-child(odd) .topic-list { text-align: left; }
        .timeline-content::after {
            top: 28px;
            left: -10px !important;
            right: auto !important;
            border-width: 10px 10px 10px 0 !important;
            border-color: transparent var(--border-color) transparent transparent !important;
        }
        .timeline-content:hover::after {
            border-color: transparent var(--accent-orange) transparent transparent !important;
        }
    }


/* source: internal-innovation.blade.php */


    /* --- Reset & Variables --- */
    .internal-innovation-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-rose: #f43f5e; /* Rose 500 */
        --accent-hover: #e11d48; /* Rose 600 */
        --accent-gold: #fbbf24; /* Amber 400 for highlights */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .internal-innovation-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .internal-innovation-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .internal-innovation-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-rose);
        color: white;
        box-shadow: 0 4px 14px rgba(244, 63, 94, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(244, 63, 94, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-rose);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        color: white;
        font-weight: 700;
    }

    .section-icon {
        margin-right: 1rem;
        color: var(--accent-rose);
        font-size: 1.5rem;
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-rose);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Program Grid */
    .program-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .program-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .program-card:hover {
        border-color: var(--accent-rose);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .program-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .program-desc {
        color: #94a3b8;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .program-meta {
        margin-top: auto;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #cbd5e1;
    }

    .meta-tag {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .meta-icon {
        color: var(--accent-rose);
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
    }


/* source: media.blade.php */


    /* --- Reset & Variables --- */
    .media-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-red: #ef4444; /* Red 500 */
        --accent-hover: #dc2626; /* Red 600 */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .media-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .media-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .media-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn-primary {
        background-color: var(--accent-red);
        color: white;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 700;
        font-size: 0.875rem;
        text-transform: uppercase;
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
        border: none;
        cursor: pointer;
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(239, 68, 68, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-red);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Area --- */
    section {
        margin-bottom: 4rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        background-color: var(--bg-card);
        padding: 0.5rem;
        border-radius: 6px;
        color: var(--accent-red);
        margin-right: 1rem;
        border: 1px solid var(--border-color);
    }

    h2 {
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    /* --- Media Specific Styles --- */
    .hero-text-block {
        border-left: 4px solid var(--accent-red);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Featured Story Card (Adapted for Layout) */
    .featured-card {
        background: linear-gradient(145deg, rgba(239, 68, 68, 0.05), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-red);
        border-radius: 12px;
        padding: 2.5rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .featured-label {
        color: var(--accent-red);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.75rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .featured-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .featured-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.85rem;
        color: #94a3b8;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .source-tag {
        background-color: rgba(255,255,255,0.1);
        padding: 0.1rem 0.5rem;
        border-radius: 4px;
        color: white;
        font-weight: 500;
        font-size: 0.75rem;
    }

    .quote-block {
        border-left: 2px solid #64748b;
        padding-left: 1rem;
        margin: 1.5rem 0;
        color: #cbd5e1;
        font-style: italic;
    }

    /* News List */
    .news-item {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        transition: 0.3s;
    }

    .news-item:hover {
        border-color: #334155;
        background-color: rgba(30, 41, 59, 0.5);
    }

    .news-date {
        font-size: 0.75rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
        margin-bottom: 0.5rem;
    }

    .news-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        display: block;
    }

    .read-link {
        color: var(--accent-red);
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        margin-top: 0.5rem;
    }

    .read-link i {
        margin-left: 0.5rem;
        transition: transform 0.2s;
    }

    .news-item:hover .read-link i {
        transform: translateX(4px);
    }

    /* Contact Section */
    .media-contact-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 2rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .media-icon {
        font-size: 2.5rem;
        color: var(--accent-red);
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2rem; }
        .hero-text-block p { font-size: 1.25rem; }
        .media-contact-card { flex-direction: column; text-align: center; }
    }


/* source: minor-ai.blade.php */


    /* --- Reset & Variables --- */
    .minor-ai-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-teal: #14b8a6; /* Teal 500 */
        --accent-hover: #0d9488; /* Teal 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .minor-ai-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }
    .minor-ai-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .minor-ai-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-teal);
        color: white;
        box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(20, 184, 166, 0.1);
        color: var(--accent-teal);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(20, 184, 166, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #5eead4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Stats/Objectives Section --- */
    .stats-bar {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(15, 23, 42, 0.5);
        padding: 3rem 0;
        margin-bottom: 6rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--accent-teal);
        margin-bottom: 1rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Feature Grid --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-teal);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        background-color: rgba(20, 184, 166, 0.1);
        color: var(--accent-teal);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    /* --- Semester Curriculum --- */
    .curriculum-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .course-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        position: relative;
        transition: 0.3s;
    }

    .course-card:hover {
        border-color: var(--accent-teal);
        transform: translateY(-5px);
    }

    .semester-badge {
        display: inline-block;
        background-color: rgba(20, 184, 166, 0.1);
        color: var(--accent-teal);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
        border: 1px solid rgba(20, 184, 166, 0.2);
    }

    .course-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }

    .curriculum-list {
        margin-top: 1.5rem;
        padding-left: 0;
    }

    .curriculum-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }

    .curriculum-list li strong {
        color: white;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .curriculum-list li span {
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .list-icon {
        color: var(--accent-teal);
        margin-right: 1rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

    /* --- Pricing Section --- */
    .pricing-section {
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    }

    .pricing-card {
        max-width: 600px;
        margin: 0 auto;
        background: linear-gradient(145deg, rgba(20, 184, 166, 0.1), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-teal);
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
        position: relative;
        box-shadow: 0 0 40px rgba(20, 184, 166, 0.15);
    }

    .price-tag {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin: 1.5rem 0;
    }

    .price-details {
        font-size: 1rem;
        color: #94a3b8;
        margin-bottom: 2rem;
    }

    .pricing-features {
        text-align: left;
        margin: 0 auto 2.5rem auto;
        max-width: 400px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .check-icon {
        color: var(--accent-teal);
        margin-right: 0.5rem;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #115e59 0%, #134e4a 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .stats-grid { grid-template-columns: 1fr 1fr; }
        .curriculum-grid { grid-template-columns: 1fr; }
        .pricing-features { grid-template-columns: 1fr; }
    }


/* source: minor-gen-ai.blade.php */


    /* --- Reset & Variables --- */
    .minor-gen-ai-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-purple: #a855f7; /* Purple 500 */
        --accent-hover: #9333ea; /* Purple 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* Scoped to content to avoid affecting layout globally if possible, 
       but these are largely compatible with Tailwind */
    .minor-gen-ai-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .minor-gen-ai-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .minor-gen-ai-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-purple);
        color: white;
        box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(168, 85, 247, 0.1);
        color: var(--accent-purple);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(168, 85, 247, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #d8b4fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Stats/Objectives Section --- */
    .stats-bar {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(15, 23, 42, 0.5);
        padding: 3rem 0;
        margin-bottom: 6rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--accent-purple);
        margin-bottom: 1rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Semester Curriculum --- */
    .curriculum-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .course-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        position: relative;
        transition: 0.3s;
    }

    .course-card:hover {
        border-color: var(--accent-purple);
        transform: translateY(-5px);
    }

    .semester-badge {
        display: inline-block;
        background-color: rgba(168, 85, 247, 0.1);
        color: var(--accent-purple);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
        border: 1px solid rgba(168, 85, 247, 0.2);
    }

    .course-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }

    .curriculum-list {
        margin-top: 1.5rem;
        padding-left: 0;
    }

    .curriculum-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }

    .curriculum-list li strong {
        color: white;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .curriculum-list li span {
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .list-icon {
        color: var(--accent-purple);
        margin-right: 1rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

    /* --- Pricing Section --- */
    .pricing-section {
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    }

    .pricing-card {
        max-width: 600px;
        margin: 0 auto;
        background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-purple);
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
        position: relative;
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
    }

    .price-tag {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin: 1.5rem 0;
    }

    .price-details {
        font-size: 1rem;
        color: #94a3b8;
        margin-bottom: 2rem;
    }

    .pricing-features {
        text-align: left;
        margin: 0 auto 2.5rem auto;
        max-width: 400px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .check-icon {
        color: var(--accent-purple);
        margin-right: 0.5rem;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #581c87 0%, #4c1d95 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .stats-grid { grid-template-columns: 1fr 1fr; }
        .curriculum-grid { grid-template-columns: 1fr; }
        .pricing-features { grid-template-columns: 1fr; }
    }


/* source: ml-dl-research.blade.php */


    /* --- Reset & Variables --- */
    .ml-dl-research-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-cyan: #06b6d4; /* Cyan 500 */
        --accent-hover: #0891b2; /* Cyan 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .ml-dl-research-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .ml-dl-research-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .ml-dl-research-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-cyan);
        color: white;
        box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(6, 182, 212, 0.1);
        color: var(--accent-cyan);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(6, 182, 212, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #67e8f9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Stats/Objectives Section --- */
    .stats-bar {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(15, 23, 42, 0.5);
        padding: 3rem 0;
        margin-bottom: 6rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--accent-cyan);
        margin-bottom: 1rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Curriculum Timeline --- */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: var(--border-color);
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 4rem;
        position: relative;
        width: 100%;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        background-color: var(--accent-cyan);
        border: 4px solid var(--bg-dark);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 24px;
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
    }

    .timeline-content {
        width: 45%;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        border-color: var(--accent-cyan);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 28px;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
        text-align: right;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent var(--border-color);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:hover::after {
        border-color: transparent transparent transparent var(--accent-cyan);
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }

    .timeline-item:nth-child(even) .timeline-content:hover::after {
        border-color: transparent var(--accent-cyan) transparent transparent;
    }

    .week-badge {
        display: inline-block;
        background-color: rgba(6, 182, 212, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent-cyan);
        margin-bottom: 0.75rem;
        border: 1px solid rgba(6, 182, 212, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lecture-title {
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .lecture-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .topic-list {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        padding: 0;
    }
    
    .timeline-item:nth-child(odd) .topic-list {
        text-align: right;
    }

    .topic-list li {
        margin-bottom: 0.25rem;
        display: inline-block;
        background: rgba(255,255,255,0.05);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        margin-right: 0.25rem;
    }

    /* --- Research Process Steps --- */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .process-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        position: relative;
        transition: 0.3s;
    }

    .process-card:hover {
        border-color: var(--accent-cyan);
        transform: translateY(-5px);
    }

    .step-number {
        font-size: 3rem;
        font-weight: 800;
        color: rgba(6, 182, 212, 0.1);
        position: absolute;
        top: 10px;
        right: 15px;
        line-height: 1;
    }

    .step-icon {
        font-size: 1.5rem;
        color: var(--accent-cyan);
        margin-bottom: 1rem;
        display: block;
    }

    .step-title {
        color: white;
        font-weight: 600;
        font-size: 1rem;
    }

    /* --- Pricing --- */
    .pricing-section {
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
        background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-cyan);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        position: relative;
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
    }

    .price-tag {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin: 1rem 0;
    }

    .pricing-features {
        text-align: left;
        margin: 2rem 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .check-icon {
        color: var(--accent-cyan);
        margin-right: 0.5rem;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #0e7490 0%, #155e75 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .stats-grid { grid-template-columns: 1fr 1fr; }
        .process-grid { grid-template-columns: 1fr; }
        .timeline::before { left: 20px; }
        .timeline-item { flex-direction: column; align-items: flex-start; margin-left: 0; padding-left: 50px; }
        .timeline-dot { left: 20px; transform: translateX(-50%); }
        .timeline-content { width: 100% !important; text-align: left !important; margin: 0 !important; }
        .timeline-item:nth-child(odd) .topic-list { text-align: left; }
        .timeline-content::after {
            top: 28px;
            left: -10px !important;
            right: auto !important;
            border-width: 10px 10px 10px 0 !important;
            border-color: transparent var(--border-color) transparent transparent !important;
        }
        .timeline-content:hover::after {
            border-color: transparent var(--accent-cyan) transparent transparent !important;
        }
    }


/* source: open-innovation.blade.php */


    /* --- Reset & Variables --- */
    .open-innovation-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-gold: #eab308; /* Yellow 500 */
        --accent-hover: #ca8a04; /* Yellow 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .open-innovation-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .open-innovation-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .open-innovation-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: black;
        box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Page Header --- */
    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background-color: rgba(234, 179, 8, 0.05);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header-title {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.25rem;
        font-weight: 300;
        color: #94a3b8;
        max-width: 800px;
    }

    /* --- Main Layout --- */
    .layout-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

    /* --- Sidebar --- */
    .sidebar {
        position: sticky;
        top: 7rem;
        height: fit-content;
    }

    .sidebar-title {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .toc-list {
        border-left: 1px solid var(--border-color);
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.875rem;
        color: #94a3b8;
        border-left: 2px solid transparent;
        margin-left: -1px;
    }

    .toc-link:hover, .toc-link.active {
        color: white;
        border-left-color: var(--accent-gold);
    }

    .cta-box {
        margin-top: 2rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    /* --- Content Styles --- */
    section {
        margin-bottom: 5rem;
        scroll-margin-top: 8rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-icon {
        background-color: var(--bg-card);
        padding: 0.5rem;
        border-radius: 6px;
        color: var(--accent-gold);
        margin-right: 1rem;
        border: 1px solid var(--border-color);
    }

    h2 {
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    p {
        margin-bottom: 1.5rem;
        color: var(--text-main);
    }

    .hero-text-block {
        border-left: 4px solid var(--accent-gold);
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-text-block p {
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        line-height: 1.4;
    }

    /* Program Grid */
    .program-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .program-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .program-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .program-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .program-desc {
        color: #94a3b8;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .program-meta {
        margin-top: auto;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #cbd5e1;
    }

    .meta-tag {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .meta-icon {
        color: var(--accent-gold);
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .layout-grid {
            grid-template-columns: 1fr;
        }
        .sidebar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header-title { font-size: 2.5rem; }
        .hero-text-block p { font-size: 1.25rem; }
    }


/* source: publications.blade.php */


    /* --- Page Specific Styles --- */
    .publications-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --text-main: #cbd5e1; /* Slate 300 */
        --accent-gold: #eab308; /* Yellow 500 */
        --accent-hover: #ca8a04; /* Yellow 600 */
        --border-color: #1e293b; /* Slate 800 */
    }

    .publications-wrapper {
        background-color: var(--bg-dark);
        color: var(--text-main);
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .publications-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .publications-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: black;
        box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(234, 179, 8, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #1e1b4b 100%);
        border-bottom: 1px solid var(--border-color);
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.5;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(234, 179, 8, 0.1);
        color: var(--accent-gold);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(234, 179, 8, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #fde047);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 3rem auto;
        color: #94a3b8;
    }

    /* --- Publications Grid --- */
    .pub-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .pub-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .pub-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    }

    .pub-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .pub-icon-wrapper {
        width: 48px;
        height: 48px;
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-gold);
        font-size: 1.25rem;
        border: 1px solid var(--border-color);
    }

    .pub-category {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94a3b8;
        font-weight: 700;
        background-color: rgba(255, 255, 255, 0.03);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
    }

    .pub-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .pub-desc {
        font-size: 0.95rem;
        color: #94a3b8;
        margin-bottom: 2rem;
        flex-grow: 1;
        line-height: 1.6;
    }

    .pub-footer {
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pub-date {
        font-size: 0.85rem;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .status-badge {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--accent-gold);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .status-badge::before {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        background-color: var(--accent-gold);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--accent-gold);
    }

    /* --- Featured Highlight Section --- */
    .featured-section {
        margin-bottom: 6rem;
    }

    .featured-card {
        background: linear-gradient(145deg, rgba(234, 179, 8, 0.05), rgba(15, 23, 42, 0.8));
        border: 1px solid var(--accent-gold);
        border-radius: 20px;
        padding: 4rem;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .featured-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .featured-label {
        color: var(--accent-gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        display: block;
    }

    .featured-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .featured-desc {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .featured-image {
        background-color: #020617;
        border-radius: 12px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #64748b;
        font-size: 1.5rem;
        position: relative;
        z-index: 1;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .pub-grid { grid-template-columns: 1fr; }
        .featured-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
        .featured-image { height: 200px; }
    }


/* source: school-students.blade.php */


    /* --- Reset & Variables --- */
    .school-students-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-green: #22c55e; /* Green 500 */
        --accent-hover: #16a34a; /* Green 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .school-students-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .school-students-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .school-students-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-green);
        color: white;
        box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(34, 197, 94, 0.1);
        color: var(--accent-green);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(34, 197, 94, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #86efac);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Why Choose Section --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-green);
        background-color: rgba(34, 197, 94, 0.05);
    }

    .feature-icon {
        font-size: 2.5rem;
        color: var(--accent-green);
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    /* --- Curriculum Explorer --- */
    .curriculum-section {
        background-color: var(--bg-lighter);
        padding: 6rem 0;
    }

    .tabs-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .tab-btn {
        background-color: var(--bg-dark);
        border: 1px solid var(--border-color);
        color: #94a3b8;
        padding: 0.75rem 1.5rem;
        border-radius: 99px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .tab-btn:hover, .tab-btn.active {
        background-color: var(--accent-green);
        color: white;
        border-color: var(--accent-green);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .curriculum-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 3rem;
        display: none; /* Hidden by default */
        animation: fadeIn 0.5s ease;
    }

    .curriculum-card.active {
        display: block;
    }

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

    .grade-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }

    .grade-title {
        font-size: 2rem;
        font-weight: 800;
        color: white;
    }

    .grade-subtitle {
        color: var(--accent-green);
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .grade-desc {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin-bottom: 2.5rem;
        max-width: 800px;
    }

    .learning-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .learning-col h4 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .learning-list {
        list-style: none;
        padding: 0;
    }

    .learning-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        color: #94a3b8;
        font-size: 0.95rem;
    }

    .check-icon {
        color: var(--accent-green);
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #14532d 0%, #166534 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .grade-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        .learning-grid { grid-template-columns: 1fr; gap: 2rem; }
        .tabs-container { gap: 0.5rem; justify-content: flex-start; overflow-x: auto; padding-bottom: 1rem; }
        .tab-btn { flex-shrink: 0; }
    }


/* source: sciml-research.blade.php */


    /* --- Reset & Variables --- */
    .sciml-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-purple: #8b5cf6; /* Violet 500 */
        --accent-hover: #7c3aed; /* Violet 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .sciml-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .sciml-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .sciml-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-purple);
        color: white;
        box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(139, 92, 246, 0.1);
        color: var(--accent-purple);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Stats/Objectives Section --- */
    .stats-bar {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(15, 23, 42, 0.5);
        padding: 3rem 0;
        margin-bottom: 6rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--accent-purple);
        margin-bottom: 1rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4;
    }

    /* --- Section Styling --- */
    .section {
        padding: 6rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Feature Grid --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-purple);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        background-color: rgba(139, 92, 246, 0.1);
        color: var(--accent-purple);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    /* --- Curriculum Timeline --- */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: var(--border-color);
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 4rem;
        position: relative;
        width: 100%;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        background-color: var(--accent-purple);
        border: 4px solid var(--bg-dark);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 24px;
        z-index: 2;
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
    }

    .timeline-content {
        width: 45%;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        border-color: var(--accent-purple);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 28px;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
        text-align: right;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent var(--border-color);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:hover::after {
        border-color: transparent transparent transparent var(--accent-purple);
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }

    .timeline-item:nth-child(even) .timeline-content:hover::after {
        border-color: transparent var(--accent-purple) transparent transparent;
    }

    .topic-badge {
        display: inline-block;
        background-color: rgba(139, 92, 246, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent-purple);
        margin-bottom: 0.75rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lecture-title {
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .lecture-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .topic-list {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        padding: 0;
    }
    
    .timeline-item:nth-child(odd) .topic-list {
        text-align: right;
    }

    .topic-list li {
        margin-bottom: 0.25rem;
        display: inline-block;
        background: rgba(255,255,255,0.05);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        margin-right: 0.25rem;
    }

    /* --- Pricing Grid (Redesigned) --- */
    .pricing-section {
        background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, var(--bg-dark) 70%);
        padding-top: 8rem;
        padding-bottom: 8rem;
        position: relative;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

    .pricing-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        position: relative;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        border-color: var(--accent-purple);
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(15, 23, 42, 0.9));
        border: 1px solid var(--accent-purple);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.15);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.25);
    }

    .best-value-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent-purple);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 99px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    .plan-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.5rem;
    }

    .featured .plan-name {
        color: var(--accent-purple);
    }

    .plan-price {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin: 1rem 0;
        letter-spacing: -0.02em;
    }

    .plan-price span {
        font-size: 1rem;
        font-weight: 400;
        color: #64748b;
    }

    .plan-provider {
        font-size: 0.85rem;
        color: #64748b;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .feature-check {
        list-style: none;
        text-align: left;
        margin-bottom: 2rem;
        flex-grow: 1;
    }

    .feature-check li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        color: #cbd5e1;
    }

    .feature-check i {
        color: var(--accent-purple);
        margin-right: 0.75rem;
        margin-top: 0.25rem;
    }

    .pricing-cta {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        font-weight: 600;
        transition: 0.3s;
        margin-top: auto;
    }

    /* --- CTA Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #4c1d95 0%, #312e81 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .stats-grid { grid-template-columns: 1fr 1fr; }
        .pricing-grid { grid-template-columns: 1fr; }
        .pricing-card.featured { transform: scale(1); }
        .timeline::before { left: 20px; }
        .timeline-item { flex-direction: column; align-items: flex-start; margin-left: 0; padding-left: 50px; }
        .timeline-dot { left: 20px; transform: translateX(-50%); }
        .timeline-content { width: 100% !important; text-align: left !important; margin: 0 !important; }
        .timeline-item:nth-child(odd) .topic-list { text-align: left; }
        .timeline-content::after {
            top: 28px;
            left: -10px !important;
            right: auto !important;
            border-width: 10px 10px 10px 0 !important;
            border-color: transparent var(--border-color) transparent transparent !important;
        }
        .timeline-content:hover::after {
            border-color: transparent var(--accent-purple) transparent transparent !important;
        }
    }


/* source: undergrads-grads-professionals.blade.php */


    /* --- Reset & Variables --- */
    .undergrads-wrapper {
        --bg-dark: #020617; /* Slate 950 */
        --bg-card: #0f172a; /* Slate 900 */
        --bg-lighter: #1e293b; /* Slate 800 */
        --text-main: #cbd5e1; /* Slate 300 */
        --text-heading: #ffffff;
        --accent-primary: #3b82f6; /* Blue 500 */
        --accent-hover: #2563eb; /* Blue 600 */
        --accent-red: #ef4444; /* Keep for brand accents */
        --accent-gold: #eab308; /* Yellow 500 for featured */
        --border-color: #1e293b; /* Slate 800 */
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .undergrads-wrapper {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
    }

    .undergrads-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
    .undergrads-wrapper ul { list-style: none; }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background-color: var(--accent-primary);
        color: white;
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: white;
    }

    .btn-outline:hover {
        border-color: var(--text-main);
        background-color: rgba(255,255,255,0.05);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .hero-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
        z-index: -1;
        pointer-events: none;
    }

    .tagline {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(59, 130, 246, 0.1);
        color: var(--accent-primary);
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        background: linear-gradient(to right, #ffffff, #93c5fd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2.5rem auto;
        color: #94a3b8;
    }

    /* --- Why AIAI Grid --- */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 6rem;
        margin-top: 2rem;
    }

    .why-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: 0.3s;
    }

    .why-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-primary);
    }

    .why-icon {
        font-size: 2rem;
        color: var(--accent-primary);
        margin-bottom: 1rem;
    }

    /* --- Section Header --- */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Featured Bundles --- */
    .featured-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .bundle-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 2.5rem;
        position: relative;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }

    .bundle-card.highlight {
        border-color: var(--accent-gold);
        background: linear-gradient(145deg, rgba(234, 179, 8, 0.05), rgba(15, 23, 42, 0.9));
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
    }

    .bundle-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent-gold);
        color: black;
        padding: 0.25rem 1rem;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .course-count {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #94a3b8;
        margin-bottom: 0.5rem;
    }

    .bundle-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .topic-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .tag {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.75rem;
        color: #cbd5e1;
        border: 1px solid var(--border-color);
    }

    .price-row {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
    }

    /* --- Learning Paths Grid --- */
    .path-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 6rem;
    }

    .path-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }

    .path-card:hover {
        border-color: var(--accent-primary);
        transform: translateY(-5px);
    }

    /* --- Individual Courses Grid --- */
    .course-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 6rem;
    }

    .ind-course-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1.5rem;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }

    .ind-course-card:hover {
        border-color: var(--text-main);
        background-color: var(--bg-lighter);
    }

    .ind-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .ind-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--accent-primary);
        margin-top: auto;
        padding-top: 1rem;
    }

    /* --- Included Features --- */
    .features-section {
        background-color: var(--bg-lighter);
        padding: 6rem 0;
        margin-bottom: 6rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .feature-item i {
        font-size: 2rem;
        color: white;
        margin-bottom: 1rem;
        background: var(--accent-primary);
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    /* --- Footer --- */
    .cta-footer {
        background: linear-gradient(90deg, #1e3a8a 0%, #172554 100%);
        text-align: center;
        padding: 6rem 1.5rem;
        margin-top: 6rem;
    }

    /* --- Chat Widget Styles --- */
    .chat-widget-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        cursor: pointer;
        z-index: 1001;
        transition: transform 0.3s;
        border: none;
    }

    .chat-widget-btn:hover {
        transform: scale(1.1);
    }

    .chat-container {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 350px;
        height: 500px;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        display: none;
        flex-direction: column;
        z-index: 1001;
        overflow: hidden;
    }

    .chat-header {
        background: linear-gradient(90deg, #1e3a8a, #172554);
        padding: 15px;
        color: white;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }

    .chat-body {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .chat-message {
        padding: 10px 15px;
        border-radius: 12px;
        max-width: 85%;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .chat-message.bot {
        background-color: rgba(255, 255, 255, 0.05);
        color: #cbd5e1;
        align-self: flex-start;
        border-bottom-left-radius: 2px;
    }

    .chat-message.user {
        background-color: var(--accent-primary);
        color: white;
        align-self: flex-end;
        border-bottom-right-radius: 2px;
    }

    .chat-input-area {
        padding: 15px;
        border-top: 1px solid var(--border-color);
        display: flex;
        gap: 10px;
    }

    .chat-input {
        flex: 1;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 10px 15px;
        color: white;
        outline: none;
        font-family: inherit;
    }

    .chat-input:focus {
        border-color: var(--accent-primary);
    }

    .send-btn {
        background: transparent;
        border: none;
        color: var(--accent-primary);
        cursor: pointer;
        font-size: 1.2rem;
    }

    .loading-dots {
        display: inline-block;
    }
    .loading-dots:after {
        content: '.';
        animation: dots 1.5s steps(5, end) infinite;
    }
    @keyframes dots {
        0%, 20% { content: '.'; }
        40% { content: '..'; }
        60% { content: '...'; }
        80%, 100% { content: ''; }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .why-grid, .features-grid { grid-template-columns: 1fr 1fr; }
        .bundle-card.highlight { transform: scale(1); }
        .chat-container { width: 90%; right: 5%; bottom: 100px; }
    }
    @media (max-width: 480px) {
        .why-grid, .features-grid { grid-template-columns: 1fr; }
    }

