/* Theme Colors */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #28a745;
    --secondary-dark: #20c997;
    --accent-color: #17a2b8;
    --accent-dark: #138496;
    --warning-color: #ffc107;
    --warning-dark: #fd7e14;
    --purple-color: #6f42c1;
    --purple-dark: #e83e8c;
    --light-bg: #f8f9ff;
    --light-bg-alt: #e8f2ff;
    --white: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --border-light: #e9ecef;
    --border-lighter: #dee2e6;
}

/* Eligibility Section Styles */
.eligibility-section,
.who-should-enroll-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.who-should-enroll-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
}

.eligibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.eligibility-section .container {
    position: relative;
    z-index: 2;
}

/* Eligibility Cards */
.eligibility-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Career Paths Section Optimization */
.eligibility-section .row {
    margin-bottom: 30px;
}

.eligibility-section .row:last-child {
    margin-bottom: 0;
}

/* Compact Career Requirements Layout */
.career-requirements-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.career-requirements-row .eligibility-card {
    padding: 20px;
}

.career-requirements-row .eligibility-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.career-requirements-row .degree-category {
    margin-bottom: 15px;
}

.career-requirements-row .degree-category h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.career-requirements-row .degree-category ul li {
    padding: 4px 0;
    font-size: 0.85rem;
}

.career-requirements-row .degree-list li {
    padding: 6px 0;
    font-size: 0.85rem;
}

/* Streamlined Life Sciences & Nursing Cards */
.life-sciences-nursing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.life-sciences-nursing-row .eligibility-card {
    padding: 20px;
}

.life-sciences-nursing-row .eligibility-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.life-sciences-nursing-row .degree-list {
    columns: 1;
    column-gap: 0;
}

.life-sciences-nursing-row .degree-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    break-inside: avoid;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px 20px 0 0;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.eligibility-header {
    margin-bottom: 25px;
    text-align: center;
}

.eligibility-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.eligibility-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.eligibility-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.eligibility-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.eligibility-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.eligibility-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.eligibility-item:hover i {
    color: white;
    transform: scale(1.1);
}

.eligibility-item span {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    line-height: 1.3;
}

/* Degree Categories */
.degree-categories {
    space-y: 20px;
}

.degree-category {
    margin-bottom: 20px;
}

.degree-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--border-light);
}

.degree-category h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.degree-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.degree-category ul li {
    padding: 8px 0;
    color: #495057;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.degree-category ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.degree-category ul li:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

/* Degree List */
.degree-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.degree-list li {
    padding: 10px 0;
    color: #495057;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    break-inside: avoid;
}

.degree-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1rem;
}

.degree-list li:hover {
    color: var(--primary-color);
    padding-left: 30px;
}

/* Degree Tags Container */
.degree-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
}

/* Degree Tags */
.degree-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Pharmacy Tags */
.pharmacy-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.pharmacy-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* Medical Tags */
.medical-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.medical-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

/* Life Science Tags */
.lifescience-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.lifescience-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Nursing Tags */
.nursing-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.nursing-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* Biotech Tags */
.biotech-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.biotech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Paramedical Tags */
.paramedical-tag {
    background: linear-gradient(135deg, #ffc224, #ffc224);
    color: #000;
}

.paramedical-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

/* Job Opportunities Section */
.job-opportunities-section {
    margin-top: 30px;
}

.job-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.job-category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.job-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
}

.job-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.job-category-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-category-header h4 i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-title {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.job-title:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Training Features & Hiring Companies */
.training-features-card,
.hiring-companies-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Compact Training & Hiring Section */
.training-hiring-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.training-hiring-row .training-features-card,
.training-hiring-row .hiring-companies-card {
    padding: 20px;
}

.training-hiring-row .eligibility-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.training-hiring-row .feature-list li,
.training-hiring-row .company-list li {
    padding: 8px 0;
    font-size: 0.9rem;
}

.training-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warning-color), var(--warning-dark));
    border-radius: 20px 20px 0 0;
}

.hiring-companies-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-color), var(--purple-dark));
    border-radius: 20px 20px 0 0;
}

.feature-list,
.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.company-list li {
    padding: 12px 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.company-list li i {
    color: var(--purple-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.feature-list li:hover,
.company-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Job Types Section */
.job-types-section {
    margin-top: 40px;
}

.job-types-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.job-type-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    cursor: pointer;
}

.job-type-item:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
    border-color: var(--accent-color);
}

.job-type-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.job-type-item:hover i {
    color: white;
    transform: scale(1.1);
}

.job-type-item span {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    line-height: 1.2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 50%, var(--accent-color) 100%);
    padding: 60px 40px;
    border-radius: 25px;
    margin-top: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .eligibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .eligibility-item {
        padding: 15px 10px;
    }
    
    .eligibility-item i {
        font-size: 1.5rem;
    }
    
    .eligibility-item span {
        font-size: 0.8rem;
    }
    
    .job-categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .job-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .job-type-item {
        padding: 20px 15px;
    }
    
    .job-type-item i {
        font-size: 2rem;
    }
    
    .job-type-item span {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-badges {
        gap: 10px;
    }
    
    .cta-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .degree-list {
        columns: 1;
    }
    
    /* Mobile Responsive for Career Paths */
    .career-requirements-row,
    .life-sciences-nursing-row,
    .training-hiring-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .career-requirements-row .eligibility-card,
    .life-sciences-nursing-row .eligibility-card,
    .training-hiring-row .training-features-card,
    .training-hiring-row .hiring-companies-card {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .eligibility-card,
    .training-features-card,
    .hiring-companies-card {
        padding: 20px;
    }
    
    .eligibility-title {
        font-size: 1.3rem;
    }
    
    .job-category-card {
        padding: 20px;
    }
    
    .job-title {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Modern Career Path Showcase */
.career-path-showcase {
    margin-bottom: 60px;
}

/* Eligibility Overview */
.eligibility-overview {
    margin-bottom: 50px;
}

.overview-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.overview-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.overview-icon i {
    font-size: 2.5rem;
    color: white;
}

.overview-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.overview-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.degree-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.degree-tag {
    padding: 5px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.degree-tag.pharmacy {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    border-color: #2196f3;
}

.degree-tag.medical {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
    border-color: #9c27b0;
}

.degree-tag.lifescience {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #2e7d32;
    border-color: #4caf50;
}

.degree-tag.nursing {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #ef6c00;
    border-color: #ff9800;
}

.degree-tag.biotech {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c2185b;
    border-color: #e91e63;
}

.degree-tag.paramedical {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    color: #00695c;
    border-color: #009688;
}

.degree-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Career Paths Grid */
.career-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.career-path-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.career-path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.3s ease;
}

.career-path-card.pv-card::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.career-path-card.cr-card::before {
    background: linear-gradient(90deg, #4834d4, #686de0);
}

.career-path-card.mc-card::before {
    background: linear-gradient(90deg, #00d2d3, #01a3a4);
}

.career-path-card.mw-card::before {
    background: linear-gradient(90deg, #ff9ff3, #f368e0);
}

.career-path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.career-path-card:hover::before {
    height: 8px;
}

.path-header {
    text-align: center;
    margin-bottom: 25px;
}

.path-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.pv-card .path-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.cr-card .path-icon {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.mc-card .path-icon {
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
}

.mw-card .path-icon {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.path-icon i {
    font-size: 2rem;
    color: white;
}

.career-path-card:hover .path-icon {
    transform: scale(1.1) rotate(5deg);
}

.path-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.path-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.path-content {
    text-align: center;
}

.salary-range {
    background: linear-gradient(135deg, var(--light-bg), var(--light-bg-alt));
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.salary-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.salary-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.key-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.role-tag {
    background: linear-gradient(135deg, var(--border-light), var(--border-lighter));
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pv-card .role-tag:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.cr-card .role-tag:hover {
    background: linear-gradient(135deg, #4834d4, #686de0);
    color: white;
}

.mc-card .role-tag:hover {
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
    color: white;
}

.mw-card .role-tag:hover {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    color: white;
}

/* Success Metrics */
.success-metrics {
    margin-bottom: 50px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(40, 167, 69, 0.2);
}

.metric-item {
    text-align: center;
    color: white;
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .eligibility-card,
    .job-category-card,
    .training-features-card,
    .hiring-companies-card,
    .career-path-card,
    .overview-card {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s ease;
    }
    
    .eligibility-card.animate,
    .job-category-card.animate,
    .training-features-card.animate,
    .hiring-companies-card.animate,
    .career-path-card.animate,
    .overview-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for New Career Path Section */
@media (max-width: 768px) {
    .overview-card {
        padding: 25px;
    }
    
    .overview-icon {
        width: 60px;
        height: 60px;
    }
    
    .overview-icon i {
        font-size: 2rem;
    }
    
    .overview-header h3 {
        font-size: 1.5rem;
    }
    
    .degree-tags {
        gap: 10px;
    }
    
    .degree-tag {
        padding: 5px 15px;
        font-size: 0.8rem;
    }

    .eligibility-header {
    margin-bottom: 0;
    text-align: left;
    margin-top: 5px;
}
    
    .career-paths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-path-card {
        padding: 20px;
    }
    
    .path-icon {
        width: 60px;
        height: 60px;
    }
    
    .path-icon i {
        font-size: 1.5rem;
    }
    
    .path-header h4 {
        font-size: 1.2rem;
    }
    
    .salary-amount {
        font-size: 1.3rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .overview-card {
        padding: 20px;
    }
    
    .overview-header h3 {
        font-size: 1.3rem;
    }
    
    .degree-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
}
