/* Jobcamp for Education - Custom Styles */

/* Robust Font Override */
body.edu-page,
body.edu-page h1,
body.edu-page h2,
body.edu-page h3,
body.edu-page h4,
body.edu-page h5,
body.edu-page h6,
body.edu-page p,
body.edu-page a,
body.edu-page li,
body.edu-page div,
body.edu-page span,
body.edu-page .w-nav-link,
body.edu-page .akita-nav-link,
body.edu-page .brix---paragraph-default-6,
body.edu-page .f-paragraph-large-2,
body.edu-page .f-h4-heading-2,
body.edu-page .brix---heading-h3-size,
body.edu-page .brix---display-5 {
    font-family: 'Satoshi', sans-serif !important;
}

body.edu-page {
    margin: 0;
    padding: 0;
}

.edu-hero-section {
    padding-top: 85px;
    padding-bottom: 120px;
    background: #fff;
    text-align: center;
    overflow: visible;
    position: relative;
}

.edu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.edu-dashboard-preview {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 30px 60px -12px rgba(0, 0, 0, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: visible;
    transform: perspective(2000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: #fff;
}

.edu-dashboard-preview:hover {
    transform: perspective(2000px) rotateX(0deg) translateY(-8px);
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 40px 80px -16px rgba(0, 0, 0, 0.2),
        0 0 0 12px rgba(255, 255, 255, 0.6);
}

.edu-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1000;
    pointer-events: auto;
}

.edu-float-1 {
    top: 950px;
    left: calc(50% - 670px);
}

.edu-float-2 {
    top: 1070px;
    right: calc(50% - 670px);
}

.edu-float-3 {
    top: 1300px;
    left: calc(50% - 670px);
}

@media (max-width: 1400px) {
    .edu-float-1 { left: calc(50% - 600px); top: 900px; }
    .edu-float-2 { right: calc(50% - 600px); top: 1020px; }
    .edu-float-3 { left: calc(50% - 600px); top: 1230px; }
}

@media (max-width: 991px) {
    .edu-float-card { display: none; }
}

.edu-float-icon {
    font-size: 24px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.edu-float-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.edu-float-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
}

.edu-hero-content {
    max-width: 960px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.edu-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(#f8fafc, #f8fafc) padding-box,
                linear-gradient(135deg, #6366f1, #ec4899) border-box;
    color: transparent;
    background-clip: padding-box, border-box;
    -webkit-background-clip: padding-box, border-box;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

/* Gradient Text Effect */
.edu-hero-badge::after {
    content: 'For Forward-Thinking Universities';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    pointer-events: none;
}

/* Since the text is transparent on the main element to show the gradient, 
   we need a way to show it. Actually, the standard way is to just set the color 
   on the main element with background-clip: text. 
   BUT, we have a background image for the border. 
   So we can't easily do both background-clip: text AND background-clip: border-box on the same element 
   without them conflicting (the text clip would clip the border background too).
   
   BETTER APPROACH: Use a pseudo-element for the border or the background.
   Let's keep the main element for the background/border and use a child span for the text gradient.
   Wait, I can't change HTML structure easily here without editing HTML file.
   
   Let's try the "inset box shadow" trick for the border simulation or just use the standard border-image.
   Actually, the cleanest way without HTML changes is:
   Main element: Gradient Border (via background trick).
   Text: Solid Indigo (simpler and still looks great) OR
   Text: Gradient (requires `background-clip: text` which conflicts with the border background).
   
   Let's go with:
   1. Gradient Border (using the background trick).
   2. Text: Deep Indigo (#4338ca) - High contrast, looks premium.
   3. If user REALLY wants gradient text, I'd need to wrap the text in a span in HTML.
   
   Let's try to stick to CSS only first. I will make the text a solid vibrant color which matches the start of the gradient.
   It's safer and more readable.
*/

.edu-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: #ffffff;
    color: #4f46e5; /* Indigo */
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    border: 1px solid #e0e7ff; /* Soft Indigo Border */
    box-shadow: 0 10px 40px -10px rgba(79, 70, 229, 0.25); /* Soft Purple Glow */
    transition: all 0.3s ease;
    position: relative;
}

/* Removed Status Dot */
.edu-hero-badge::before {
    display: none;
}

.edu-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.35);
}

/* Remove the old gradient text pseudo-element if it exists */
.edu-hero-badge::after {
    display: none;
}

.edu-badge-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    animation: rotate-globe 20s linear infinite;
}

@keyframes rotate-globe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.edu-hero-title {
    font-size: 80px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    padding-bottom: 8px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.edu-hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #475569;
    max-width: 720px;
    margin: 0 auto 48px;
    font-weight: 500;
}


.edu-dashboard-preview {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 30px 60px -12px rgba(0, 0, 0, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: perspective(2000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: #fff;
}

.edu-dashboard-preview:hover {
    transform: perspective(2000px) rotateX(0deg) translateY(-8px);
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 40px 80px -16px rgba(0, 0, 0, 0.2),
        0 0 0 12px rgba(255, 255, 255, 0.6);
}

.edu-dashboard-img {
    width: 100%;
    display: block;
    margin-top: -2px; /* Fix tiny gap */
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edu-section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.edu-section-title p {
    font-size: 22px;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.edu-section-title h2 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.land-more-interviews-section {
    padding: 100px 20px;
    background: #f8fafc !important; /* Soft Slate */
    position: relative;
}

/* Minimal Gradient Divider */
.land-more-interviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(99,102,241,0), #6366f1, #ec4899, rgba(236,72,153,0));
    opacity: 0.6;
}

.f-feature-card-filled {
    background: #fff !important;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.f-feature-card-filled:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.05), 
        0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: rgba(67, 56, 202, 0.1);
}

.f-h4-heading-2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 24px;
}

.f-paragraph-large-2 {
    color: #475569;
    line-height: 1.7;
    font-size: 17px;
    letter-spacing: 0.01em;
}

.edu-section-title p.f-heading-detail-small-4 {
    color: #4f46e5;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(79, 70, 229, 0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 24px;
}

/* Subsection Headers for For Students / For Career Teams */
.edu-subsection-header {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 48px;
    position: relative;
}

.edu-section-spacer {
    margin-top: 140px;
}

.edu-subsection-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #6366f1, #ec4899) border-box;
    color: #4f46e5;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 3px solid transparent;
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.edu-subsection-label:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5);
    color: #4338ca;
}

.edu-subsection-title {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.edu-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.edu-bento-item {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; Removed for consistent spacing */
    height: 100%;
    gap: 32px;
}

.edu-bento-item:hover {
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    transform: translateY(-6px);
    border-color: rgba(67, 56, 202, 0.15);
}

.edu-bento-item-wide {
    grid-column: span 2;
}

#mission {
    background: #ffffff !important; /* White */
    padding: 100px 20px;
    position: relative;
}

/* Minimal Gradient Divider */
#mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(99,102,241,0), #6366f1, #ec4899, rgba(236,72,153,0));
    opacity: 0.6;
    z-index: 10; /* Ensure it sits on top */
}

/* Add a subtle mesh gradient blob behind mission */
#mission::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.brix---card {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
}

.brix---card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
    border-color: #cbd5e1 !important;
}

/* Mobile responsive padding */
@media (max-width: 767px) {
    .brix---card {
        padding: 16px !important;
        text-align: center !important;
    }
    
    #mission .edu-section-title h2,
    #mission .brix---heading-h2-size-4 {
        text-align: center !important;
    }
    
    .brix---card .edu-icon-wrapper {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .brix---heading-h3-size {
        text-align: center !important;
    }
    
    .brix---paragraph-default-6 {
        text-align: center !important;
    }
}

.brix---heading-h3-size {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.brix---paragraph-default-6 {
    color: #334155;
    line-height: 1.6;
    font-size: 18px;
    letter-spacing: -0.01em;
}

/* Removed old grid span classes */

.edu-bento-content {
    position: relative;
    z-index: 2;
}

.edu-bento-img-wrapper {
    /* margin-top: auto; Removed for consistent spacing */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.edu-bento-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Partner CTA Section */
.edu-cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #fff;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, rgba(99,102,241,0) 0%, #6366f1 25%, #ec4899 75%, rgba(236,72,153,0) 100%) 1;
    box-shadow: 0 -10px 30px -10px rgba(99, 102, 241, 0.3) inset;
}

/* Add subtle glow effects */
.edu-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.edu-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.edu-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.edu-cta-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.edu-cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2; /* Increased from default/tight to allow space for descenders */
    padding-bottom: 10px; /* Extra buffer for the gradient clip */
}

.edu-cta-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #e2e8f0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.edu-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 70px;
}

.edu-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 32px;
    border-radius: 24px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.edu-cta-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.edu-section-title h2 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #0f172a;
}



.edu-cta-button-wrapper {
    text-align: center;
}

.edu-cta-button {
    background: #fff;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.edu-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
    background: #fff;
    color: #000;
}

.edu-cta-button-text {
    font-weight: 700;
    font-size: 18px;
    margin-right: 12px;
    color: #000;
}

.edu-cta-button-icon {
    width: 20px;
    filter: invert(1); /* Make black */
}

/* Footer */
.edu-footer {
    background: #f8fafc; /* Soft Slate */
    padding: 80px 20px 40px;
    position: relative;
    color: #64748b;
}

/* Gradient Top Border */
.edu-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
}

.edu-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.edu-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.edu-footer-brand {
    max-width: 300px;
}

.edu-footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
    color: #0f172a; /* Dark Slate */
}

.edu-footer-logo {
    height: 40px;
    margin-right: 12px;
    /* No filter - original logo */
}

.edu-footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
}

.edu-footer-tagline {
    color: #475569;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.edu-footer-contact {
    text-align: right;
}

.edu-footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f172a; /* Dark Slate */
    margin-bottom: 16px;
    font-weight: 700;
}

.edu-footer-email-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.edu-footer-email-link:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.edu-footer-icon {
    width: 24px;
    margin-right: 12px;
    /* No filter - original icon color */
}

.edu-footer-email-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.edu-footer-label {
    font-size: 12px;
    color: #64748b;
}

.edu-footer-value {
    font-weight: 600;
    font-size: 18px;
    color: #0f172a;
}

.edu-footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8; /* Slate 400 */
    font-size: 14px;
}

@media (max-width: 991px) {
    .edu-hero-title { font-size: 48px; }
    .edu-bento-grid { grid-template-columns: 1fr; }
    .edu-bento-item-wide { grid-column: span 1; }
    .edu-cta-grid { grid-template-columns: 1fr; }
    .edu-footer-content { flex-direction: column; gap: 40px; }
    .edu-footer-contact { text-align: left; }
    .edu-subsection-header { margin: 60px auto 40px; }
    .edu-subsection-title { font-size: 30px; }
    .edu-subsection-label { font-size: 14px; padding: 10px 28px; }
    .edu-section-spacer { margin-top: 120px; }
}

@media (max-width: 767px) {
    .brix---section-2 {
        padding: 60px 12px !important;
    }
    .edu-bento-grid {
        padding: 0 !important;
    }
    .edu-bento-item {
        padding: 24px 16px;
    }
    .edu-hero-title { font-size: 36px; }
    .edu-cta-title { font-size: 36px; }
    .edu-dashboard-preview {
        transform: none;
        margin-top: 20px;
    }
    .edu-dashboard-preview:hover {
        transform: none;
    }
    .edu-subsection-header { margin: 50px auto 32px; }
    .edu-subsection-title { font-size: 26px; }
    .edu-subsection-label { font-size: 13px; padding: 10px 24px; letter-spacing: 0.06em; }
    .edu-section-spacer { margin-top: 100px; }

    /* Make the Student Management / Employer cards fill the screen on mobile */
    .edu-graphic-wrapper {
        padding: 20px;
        min-height: auto;
    }
    .edu-graphic-card {
        max-width: 100%;
    }
    .edu-list-item {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }
    .edu-list-info {
        flex: 1 1 160px;
        min-width: 0;
    }
    .edu-status-pill,
    .edu-check-icon {
        margin-left: auto;
    }
}

/* Icons */
.edu-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.edu-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Challenge Section Icons */
.f-feature-card-filled .edu-icon-wrapper {
    background: #eff6ff;
    color: #4f46e5;
}

.f-feature-card-filled:hover .edu-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: #4f46e5;
    color: #fff;
}

/* Mission Section Icons */
.brix---card .edu-icon-wrapper {
    background: #eff6ff;
    color: #3b82f6;
}

.brix---card:hover .edu-icon-wrapper {
    background: #3b82f6;
    color: #ffffff;
}

/* CTA Section Icons */
.edu-cta-card .edu-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.edu-cta-card:hover .edu-icon-wrapper {
    transform: scale(1.1);
    background: #fff;
    color: #4f46e5;
}

.edu-cta-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.brix---section-2 {
    padding: 100px 20px;
    background: #f8fafc !important; /* Soft Slate */
    position: relative;
}

/* Minimal Gradient Divider */
.brix---section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(99,102,241,0), #6366f1, #ec4899, rgba(236,72,153,0));
    opacity: 0.6;
}

.edu-cta-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: #e2e8f0;
    letter-spacing: 0.01em;
}

/* Responsive Typography for Section Titles */
@media (max-width: 991px) {
    .edu-section-title h2 {
        font-size: 42px;
    }
    .edu-section-title p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .edu-section-title h2 {
        font-size: 36px;
    }
    .edu-section-title p {
        font-size: 19px;
    }
}

@media (max-width: 479px) {
    .edu-section-title h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .edu-section-title p {
        font-size: 18px;
    }
}

/* Dashboard Hero Styles */
.dashboard-ui {
    display: flex;
    background: #F8FAFC;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    text-align: left;
    font-family: 'Inter', 'Satoshi', sans-serif;
    height: 700px; /* Fixed height for the preview */
}

/* Sidebar */
.dash-sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-shrink: 0;
}

.dash-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 8px;
}

.dash-logo-icon {
    width: 36px;
    height: 36px;
    background: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.dash-logo-text {
    font-weight: 700;
    color: #0f172a;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.dash-nav-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-nav-group.bottom {
    margin-top: auto;
    margin-bottom: 24px;
}

.dash-nav-item {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #64748b;
}

.dash-nav-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.dash-nav-item.active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.05);
}

.dash-icon {
    width: 18px;
    height: 18px;
}

.dash-user-profile {
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
}

.dash-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    box-shadow: 0 0 0 2px #fff, 0 1px 2px rgba(0,0,0,0.1);
}

.dash-user-info {
    flex: 1;
    min-width: 0;
}

.dash-user-email {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-user-status {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

/* Main Content */
.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F8FAFC;
    overflow: hidden;
}

.dash-header {
    height: 64px;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.dash-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.dash-icon-small {
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

.dash-sep {
    color: #cbd5e1;
}

.dash-current {
    color: #0f172a;
    font-weight: 700;
}

.dash-content-pad {
    padding: 32px;
    overflow-y: hidden; /* Prevent scrolling */
    height: 100%;
}

/* Dashboard Chart Styles */
.dash-chart-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
}

.dash-chart-header-stat {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.dash-chart-big-num {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}

.dash-chart-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.dash-chart-badge {
    background: #f0fdf4;
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #dcfce7;
}

.dash-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1;
    gap: 12px;
    padding-bottom: 8px;
}

.dash-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.dash-bar {
    width: 100%;
    background: #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 4px;
}

.dash-bar:hover, .dash-bar.active {
    background: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dash-bar-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}


.dash-welcome {
    margin-bottom: 32px;
}

.dash-welcome h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.dash-welcome p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

/* Banner */
.dash-banner {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dcfce7;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s;
}

.dash-banner:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dash-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(240, 253, 244, 0.5);
}

.dash-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.dash-banner-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 2px;
}

.dash-banner-sub {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
}

/* Stats Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.dash-stat-card {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    transition: all 0.3s;
}

.dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dash-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.dash-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dash-stat-icon svg {
    width: 20px;
    height: 20px;
}

.dash-stat-icon.blue { background: #3b82f6; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }
.dash-stat-icon.green { background: #22c55e; box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3); }
.dash-stat-icon.purple { background: #a855f7; box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3); }
.dash-stat-icon.orange { background: #f97316; box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3); }

.dash-stat-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-stat-badge svg {
    width: 12px;
    height: 12px;
}

.dash-stat-badge.green { background: #f0fdf4; color: #16a34a; border: 1px solid #dcfce7; }
.dash-stat-badge.red { background: #fef2f2; color: #dc2626; border: 1px solid #fee2e2; }

.dash-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1;
}

.dash-stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Bottom Grid */
.dash-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dash-panel {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    padding: 24px;
    transition: box-shadow 0.3s;
}

.dash-panel:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dash-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dash-panel-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.dash-panel-header a {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.dash-panel-header a:hover {
    text-decoration: underline;
}

/* Activity List */
.dash-activity-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dash-avatar-initials {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.dash-activity-content {
    flex: 1;
}

.dash-activity-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.dash-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.dash-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.dash-status.submitted {
    background: #f1f5f9;
    color: #475569;
}

.dash-activity-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-action {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.dash-time {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

/* Jobs List */
.dash-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-job-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-job-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dash-job-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.dash-job-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.dash-job-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.dash-job-status.closed {
    background: #fefce8;
    color: #a16207;
    border: 1px solid #fef9c3;
}

.dash-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-progress-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    background: #facc15;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

.dash-progress-text {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    width: 90px;
    text-align: right;
}

/* Responsive adjustments for the dashboard preview */
@media (max-width: 1024px) {
    .dash-sidebar {
        display: none;
    }
    
    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dash-bottom-grid {
        grid-template-columns: 1fr;
    }
}


/* Career Team Graphics */
.edu-graphic-wrapper {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.edu-graphic-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    position: relative;
}

.edu-graphic-card.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.edu-graphic-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.edu-graphic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.edu-graphic-dot.red { background: #ef4444; }
.edu-graphic-dot.yellow { background: #f59e0b; }
.edu-graphic-dot.green { background: #22c55e; }

/* Chart Graphic */
.edu-chart-area {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100px;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
}

.edu-chart-bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s;
}

.edu-cv-line {
    height: 5px;
    background: #cbd5e1; /* Darker for better visibility */
    border-radius: 3px;
    margin-bottom: 2px;
}

.edu-chart-bar.active {
    background: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.edu-floating-stat {
    position: absolute;
    top: 40px;
    right: -10px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 8px 20px -4px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    animation: float-stat 3s ease-in-out infinite;
}

@keyframes float-stat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.edu-stat-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
}

.edu-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.edu-stat-up {
    color: #22c55e;
    font-size: 12px;
}

/* List Graphic */
.edu-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

.edu-list-item:hover {
    background: #f8fafc;
}

.edu-avatar {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.edu-list-info {
    flex: 1;
}

.edu-list-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.edu-list-sub {
    font-size: 11px;
    color: #64748b;
}

.edu-status-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
}

.edu-status-pill.green { background: #f0fdf4; color: #16a34a; }
.edu-status-pill.yellow { background: #fefce8; color: #ca8a04; }
.edu-status-pill.blue { background: #eff6ff; color: #3b82f6; }

/* Logos Graphic */
.edu-logo-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.edu-logo-box.google { background: #4285f4; }
.edu-logo-box.microsoft { background: #00a4ef; }
.edu-logo-box.tesla { background: #cc0000; }

.edu-check-icon {
    color: #22c55e;
    width: 16px;
    height: 16px;
}

/* Doc Graphic */
.edu-doc-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.edu-doc-icon svg {
    width: 24px;
    height: 24px;
}

.edu-doc-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.edu-doc-sub {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}

.edu-btn-small {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.edu-btn-small:hover {
    transform: translateY(-2px);
}

.edu-btn-small svg {
    width: 14px;
    height: 14px;
}

/* Student Graphics */

/* Application Tracker (List Style) */
.edu-app-tracker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.edu-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    background: #fff;
    transition: all 0.2s;
}

.edu-app-item:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateX(2px);
}

.edu-app-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.edu-app-logo.google { background: #4285f4; }
.edu-app-logo.spotify { background: #1db954; }
.edu-app-logo.airbnb { background: #ff5a5f; }

.edu-app-info {
    flex: 1;
}

.edu-app-role {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.edu-app-company {
    font-size: 11px;
    color: #64748b;
}

.edu-app-status {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.edu-app-status.pending { background: #f1f5f9; color: #64748b; }
.edu-app-status.active { background: #eff6ff; color: #3b82f6; }
.edu-app-status.success { background: #f0fdf4; color: #16a34a; }


/* CV Builder (Modern Minimal) */
.edu-cv-paper.modern {
    display: flex;
    flex-direction: row;
    padding: 0;
    overflow: hidden;
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 100%;
    max-width: 240px;
    height: 100%;
    min-height: 200px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.edu-cv-paper.modern:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 25px -5px rgba(0, 0, 0, 0.08),
        0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.edu-cv-sidebar {
    width: 30%;
    background: #1e293b;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edu-cv-avatar.small {
    width: 28px;
    height: 28px;
    background: #475569;
    border-radius: 50%;
    margin-bottom: 4px;
}

.edu-cv-sidebar-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.edu-cv-sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.edu-cv-line.white { background: #fff; opacity: 0.2; }
.edu-cv-line.white.opacity-50 { opacity: 0.1; }

.edu-cv-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edu-cv-name-line.large {
    height: 10px;
    width: 80%;
    background: #0f172a;
    border-radius: 4px;
    margin-bottom: 6px;
}

.edu-cv-role-line {
    height: 6px;
    width: 50%;
    background: #6366f1; /* Accent color */
    border-radius: 3px;
}

.edu-cv-body-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edu-cv-text-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.edu-cv-line.highlight {
    background: #e0e7ff; /* Highlighted line */
    width: 85%;
}

.edu-ai-rewrite-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #0f172a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    animation: float-badge 3s ease-in-out infinite;
    z-index: 10;
}

.edu-cv-line.width-80 { width: 80%; }
.edu-cv-line.width-70 { width: 70%; }
.edu-cv-line.width-60 { width: 60%; }
.edu-cv-line.width-50 { width: 50%; }
.edu-cv-line.width-40 { width: 40%; }

/* Interview Notes */
.edu-notes-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edu-notes-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.edu-notes-icon {
    color: #3b82f6;
    width: 20px;
    height: 20px;
}

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

.edu-notes-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.edu-note-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.edu-note-checkbox {
    width: 16px;
    height: 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-note-checkbox.checked {
    background: #3b82f6;
    border-color: #3b82f6;
}

.edu-note-checkbox.checked::after {
    content: '✓';
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.edu-note-text {
    font-size: 13px;
    color: #334155;
}

.edu-ai-feedback-box {
    margin-top: 8px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.edu-ai-icon {
    font-size: 14px;
}

.edu-ai-text {
    font-size: 11px;
    color: #15803d;
    line-height: 1.4;
    font-weight: 500;
}

/* Mentor Card */
.edu-mentor-card {
    width: 100%;
}

.edu-mentor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.edu-mentor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    background-image: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.edu-mentor-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.edu-mentor-role {
    font-size: 11px;
    color: #64748b;
}

.edu-mentor-msg {
    background: #f8fafc;
    padding: 12px;
    border-radius: 0 12px 12px 12px;
    font-size: 12px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
}

.edu-mentor-action {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.edu-mentor-action:hover {
    background: #1e293b;
}

/* Job Match */
.edu-job-match-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    margin-bottom: 8px;
    background: #fff;
    transition: transform 0.2s;
}

.edu-job-match-row:hover {
    transform: translateX(4px);
    border-color: #e2e8f0;
}

.edu-job-icon {
    width: 36px;
    height: 36px;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.edu-job-icon.blue { background: #2563eb; }

.edu-job-info {
    flex: 1;
}

.edu-job-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.edu-job-company {
    font-size: 11px;
    color: #64748b;
}

.edu-match-badge {
    text-align: right;
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

.edu-match-score {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #22c55e;
}

/* Responsive Styles for Graphics */
@media screen and (max-width: 991px) {
    .edu-graphic-wrapper {
        padding: 24px;
        min-height: 200px;
    }
    
    .edu-graphic-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 551px) {
    .edu-graphic-wrapper {
        padding: 12px;
        min-height: auto;
        overflow: hidden;
    }

    .edu-graphic-card {
        padding: 16px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Left-align by default */
        overflow: hidden;
    }

    /* Center specific elements that need centering */
    .edu-graphic-card.center-content {
        align-items: center;
    }

    /* Keep graphic header dots on the left */
    .edu-graphic-header {
        align-self: flex-start;
    }

    /* Scale down slightly to fit width */
    .edu-cv-paper.modern,
    .edu-app-tracker-list,
    .edu-notes-card,
    .edu-mentor-card,
    .edu-job-match-row {
        width: 100%;
        max-width: 100%;
    }

    /* Make list-based graphics full width and left-aligned */
    .edu-app-tracker-list,
    .edu-notes-card,
    .edu-mentor-card {
        align-self: stretch;
    }

    /* --- Application Tracker Fixes --- */
    .edu-app-item {
        padding: 8px;
        gap: 8px;
    }
    /* Show all items */
    .edu-app-logo {
        width: 28px;
        height: 28px;
        font-size: 10px;
        flex-shrink: 0;
    }
    .edu-app-info {
        min-width: 0;
    }
    .edu-app-role, .edu-app-company {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }
    .edu-app-status {
        padding: 2px 6px;
        font-size: 9px;
        flex-shrink: 0;
    }

    /* --- CV Builder Fixes --- */
    .edu-cv-paper.modern {
        min-height: 150px;
        max-width: 220px; /* Keep it constrained */
    }
    .edu-cv-sidebar {
        width: 25%;
        padding: 10px 6px;
    }
    .edu-cv-main {
        padding: 10px;
        gap: 10px;
    }
    /* Hide less important sections on mobile */
    .edu-cv-body-section:nth-child(3),
    .edu-cv-body-section:last-child {
        display: none;
    }
    .edu-cv-header-info {
        margin-bottom: 0;
    }

    /* --- Interview Prep (Notes) Fixes --- */
    .edu-notes-card {
        gap: 8px;
    }
    /* Hide the last note item to reduce height */
    .edu-note-item:nth-child(4) {
        display: none;
    }
    .edu-note-text {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .edu-ai-feedback-box {
        padding: 8px;
        margin-top: 4px;
    }
    .edu-ai-text {
        font-size: 10px;
    }

    /* --- Mentor Card Fixes --- */
    .edu-mentor-card {
        max-width: 260px; /* Prevent stretching */
        margin: 0 auto;
    }
    .edu-mentor-avatar {
        width: 32px;
        height: 32px;
    }
    .edu-mentor-msg {
        font-size: 11px;
        padding: 8px;
    }

    /* --- Analytics Dashboard Fixes --- */
    .edu-chart-area {
        height: 80px;
        gap: 6px;
        margin-bottom: 12px;
        padding: 0;
        justify-content: center;
    }
    .edu-chart-bar {
        min-width: 8px;
    }
    .edu-floating-stat {
        position: absolute;
        top: 30px;
        right: 5px;
        padding: 6px 10px;
        font-size: 11px;
    }
    .edu-stat-value {
        font-size: 14px;
    }
    .edu-stat-label {
        font-size: 9px;
    }

    /* --- Student Management & Employer Network Fixes --- */
    .edu-list-item {
        padding: 10px;
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%; /* Full width */
        display: flex;
    }
    .edu-avatar, .edu-logo-box {
        width: 36px;
        height: 36px;
        font-size: 12px;
        flex-shrink: 0;
    }
    .edu-list-info {
        flex: 1;
        min-width: 0;
    }
    .edu-list-name {
        font-size: 14px;
        font-weight: 700;
    }
    /* Hide subtitle text on small screens for cleaner look */
    .edu-list-sub {
        display: none;
    }
    .edu-status-pill {
        font-size: 10px;
        padding: 4px 10px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .edu-check-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    /* --- Custom Reporting Fixes --- */
    .edu-doc-icon {
        width: 44px;
        height: 44px;
    }
    .edu-doc-icon svg {
        width: 22px;
        height: 22px;
    }
    .edu-doc-title {
        font-size: 14px;
    }
    .edu-doc-sub {
        font-size: 11px;
        margin-bottom: 14px;
    }
    .edu-btn-small {
        padding: 8px 14px;
        font-size: 11px;
    }
    .edu-btn-small svg {
        width: 13px;
        height: 13px;
    }
}

@media screen and (max-width: 480px) {
    /* More aggressive scaling for very small screens */
    
    .edu-graphic-card {
        padding: 14px 10px;
    }

    /* --- Analytics Dashboard --- */
    .edu-chart-area {
        height: 70px;
        gap: 4px;
        padding: 0;
        justify-content: center;
    }
    .edu-floating-stat {
        top: 20px;
        right: 0;
        padding: 5px 8px;
        font-size: 10px;
    }
    .edu-stat-value {
        font-size: 12px;
    }
    .edu-stat-label {
        font-size: 8px;
    }

    /* --- Student Management & Employer Network --- */
    .edu-list-item {
        padding: 8px;
        gap: 8px;
        align-items: center;
        width: 100%;
        display: flex;
    }
    .edu-avatar, .edu-logo-box {
        width: 32px;
        height: 32px;
        font-size: 11px;
        flex-shrink: 0;
    }
    .edu-list-info {
        flex: 1;
        min-width: 0;
    }
    .edu-list-name {
        font-size: 13px;
        font-weight: 700;
    }
    .edu-list-sub {
        display: none; /* Hide subtitle text */
    }
    .edu-status-pill {
        font-size: 9px;
        padding: 3px 8px;
        flex-shrink: 0;
    }
    .edu-check-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* --- Custom Reporting --- */
    .edu-doc-icon {
        width: 40px;
        height: 40px;
    }
    .edu-doc-icon svg {
        width: 20px;
        height: 20px;
    }
    .edu-doc-title {
        font-size: 13px;
    }
    .edu-doc-sub {
        font-size: 10px;
        margin-bottom: 12px;
    }
    .edu-btn-small {
        padding: 6px 12px;
        font-size: 10px;
    }
    .edu-btn-small svg {
        width: 12px;
        height: 12px;
    }

    /* --- For Students Graphics --- */
    .edu-app-item {
        padding: 7px;
        gap: 7px;
    }
    .edu-app-logo {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }
    .edu-app-role {
        font-size: 11px;
    }
    .edu-app-company {
        font-size: 10px;
    }
    .edu-app-status {
        font-size: 8px;
        padding: 2px 5px;
    }

    .edu-cv-paper.modern {
        max-width: 200px;
        min-height: 140px;
    }

    .edu-notes-card {
        gap: 7px;
    }
    .edu-note-text {
        font-size: 11px;
    }
    .edu-ai-text {
        font-size: 9px;
    }

    .edu-mentor-card {
        max-width: 240px;
    }
    .edu-mentor-msg {
        font-size: 10px;
        padding: 7px;
    }
}

@media screen and (max-width: 380px) {
    /* Extra small screens */
    
    .edu-graphic-wrapper {
        padding: 10px;
    }
    
    .edu-graphic-card {
        padding: 12px 8px;
    }

    /* --- Analytics Dashboard --- */
    .edu-chart-area {
        height: 60px;
        gap: 3px;
        justify-content: center;
    }
    .edu-chart-bar {
        min-width: 6px;
    }
    .edu-floating-stat {
        top: 15px;
        right: -5px;
        padding: 4px 7px;
        font-size: 9px;
    }
    .edu-stat-value {
        font-size: 11px;
    }
    .edu-stat-label {
        font-size: 7px;
    }

    /* --- Student Management & Employer Network --- */
    .edu-list-item {
        padding: 7px;
        gap: 7px;
        align-items: center;
        width: 100%;
        display: flex;
    }
    .edu-avatar, .edu-logo-box {
        width: 30px;
        height: 30px;
        font-size: 10px;
        flex-shrink: 0;
    }
    .edu-list-info {
        flex: 1;
        min-width: 0;
    }
    .edu-list-name {
        font-size: 12px;
        font-weight: 700;
    }
    .edu-list-sub {
        display: none; /* Hide subtitle text */
    }
    .edu-status-pill {
        font-size: 8px;
        padding: 2px 6px;
        flex-shrink: 0;
    }
    .edu-check-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    /* --- Custom Reporting --- */
    .edu-doc-icon {
        width: 36px;
        height: 36px;
    }
    .edu-doc-icon svg {
        width: 18px;
        height: 18px;
    }
    .edu-doc-title {
        font-size: 12px;
    }
    .edu-doc-sub {
        font-size: 9px;
        margin-bottom: 10px;
    }
    .edu-btn-small {
        padding: 5px 10px;
        font-size: 9px;
    }
    .edu-btn-small svg {
        width: 11px;
        height: 11px;
    }

    /* --- For Students Graphics --- */
    .edu-app-item {
        padding: 6px;
        gap: 6px;
    }
    .edu-app-logo {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
    .edu-app-role {
        font-size: 10px;
    }
    .edu-app-company {
        font-size: 9px;
    }
    .edu-app-status {
        font-size: 7px;
        padding: 1px 4px;
    }

    .edu-cv-paper.modern {
        max-width: 180px;
        min-height: 130px;
    }
    .edu-cv-sidebar {
        padding: 8px 5px;
    }
    .edu-cv-main {
        padding: 8px;
        gap: 8px;
    }

    .edu-notes-card {
        gap: 6px;
    }
    .edu-note-text {
        font-size: 10px;
    }
    .edu-ai-feedback-box {
        padding: 6px;
    }
    .edu-ai-text {
        font-size: 8px;
    }

    .edu-mentor-card {
        max-width: 220px;
    }
    .edu-mentor-avatar {
        width: 30px;
        height: 30px;
    }
    .edu-mentor-msg {
        font-size: 9px;
        padding: 6px;
    }
    .edu-mentor-action {
        padding: 6px;
        font-size: 10px;
    }


    /* Disable hover effects that break layout on mobile */
    .edu-cv-paper.modern:hover,
    .edu-app-item:hover,
    .edu-job-match-row:hover,
    .edu-mentor-action:hover {
        transform: scale(0.85) !important; /* Maintain the mobile scale */
        box-shadow: none !important; /* Simplify */
    }

    .edu-graphic-wrapper {
        padding: 8px;
        overflow: hidden;
    }
    
    .edu-graphic-card {
        padding: 12px;
        overflow: hidden;
    }

    /* Further adjustments for extreme small screens */
    .edu-app-role {
        font-size: 11px;
    }
    
    .edu-app-company {
        font-size: 9px;
    }
    
    .edu-app-logo {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }
    
    .edu-app-status {
        font-size: 8px;
        padding: 2px 4px;
    }
}

@media screen and (max-width: 520px) {
    /* Start reducing text size to prevent overlap */
    .edu-list-name {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .edu-status-pill {
        font-size: 9px;
        padding: 3px 8px;
    }
}

@media screen and (max-width: 450px) {
    /* Further reduce sizes and limit name width */
    .edu-list-name {
        font-size: 12px;
        max-width: 120px;
    }

    .edu-status-pill {
        font-size: 8px;
        padding: 2px 6px;
    }

    .edu-avatar, .edu-logo-box {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

@media screen and (max-width: 416px) {
    /* Make logos even smaller for ultra-compact screens */
    .edu-avatar, .edu-logo-box {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .edu-list-item {
        padding: 7px 8px;
        gap: 8px;
    }

    .edu-list-name {
        font-size: 12px;
    }

    .edu-status-pill {
        font-size: 7px;
        padding: 2px 5px;
    }
}

@media screen and (max-width: 406px) {
    /* Hide text in App Tracker to prevent clutter */
    .edu-app-info {
        display: none;
    }

    .edu-app-item {
        justify-content: space-between;
    }
}

@media screen and (max-width: 405px) {
    /* Hide names in Student Management & Employer Network */
    .edu-list-name {
        display: none;
    }

    .edu-list-item {
        justify-content: space-between;
    }

    .edu-list-info {
        flex: initial;
    }

    /* Override for Employer Network: Hide logo, show name */
    .employer-network-card .edu-list-name {
        display: block;
    }
    .employer-network-card .edu-logo-box {
        display: none;
    }
}

@media screen and (max-width: 353px) {
    /* Ultra-compact view for very small screens */
    .edu-graphic-wrapper {
        padding: 8px;
    }

    .edu-graphic-card {
        padding: 12px;
    }

    .edu-list-item {
        padding: 6px;
        gap: 6px;
    }

    .edu-avatar, .edu-logo-box {
        width: 22px;
        height: 22px;
        font-size: 8px;
    }

    .edu-list-name {
        font-size: 11px;
    }

    .edu-status-pill {
        font-size: 6px;
        padding: 2px 4px;
    }

    .edu-check-icon {
        width: 12px;
        height: 12px;
    }
}

/* Scroll Animation Utilities */
.edu-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.edu-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.edu-delay-100 { transition-delay: 0.1s; }
.edu-delay-200 { transition-delay: 0.2s; }
.edu-delay-300 { transition-delay: 0.3s; }
.edu-delay-400 { transition-delay: 0.4s; }
.edu-delay-500 { transition-delay: 0.5s; }
