/* Career Page Premium Styles */

:root {
    --career-navy: #0a1e3f;
    --career-orange: #ff6b00;
    --career-bg-light: #f8f9fa;
    --career-bg-white: #ffffff;
    --career-gray: #6c757d;
    --career-border: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Global Utilities --- */
.center-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* --- Hero --- */
.career-hero {
    background: linear-gradient(135deg, #fdfbfb 0%, #f1f3f5 100%);
    padding: 140px 0 100px;
}

.hero-content {
    animation: fadeUp 0.8s ease-out;
}

/* --- Overview --- */
.career-overview {
    padding: 60px 0;
}

.overview-box {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.overview-box h2 {
    color: var(--career-navy);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* --- Tabs --- */
.career-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.career-tabs {
    display: inline-flex;
    background: #fff;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background: transparent;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
}

.tab-btn:hover {
    color: var(--career-orange);
    background: rgba(255, 107, 0, 0.05);
}

.tab-btn.active {
    background: var(--career-navy);
    color: #fff;
    box-shadow: 0 4px 10px rgba(10, 30, 63, 0.2);
}

/* --- Pathway Cards (Premium) --- */
.pathway-card {
    height: 100%;
    /* Equal height */
    position: relative;
    border: 1px solid var(--career-border);
}

.pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.3);
}

/* --- Roadmap Timeline --- */
.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        display: none;
    }

    .roadmap-timeline {
        flex-direction: column;
        align-items: flex-start;
    }
}

.roadmap-node {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.node-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 4px solid #e9ecef;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Bebas Neue';
    color: #aaa;
    transition: all 0.3s;
}

.roadmap-node h4 {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 1rem;
    color: var(--career-navy);
    margin-bottom: 0.5rem;
}

.roadmap-node p {
    font-size: 0.9rem;
    color: #777;
}

.roadmap-node.active-glow .node-circle,
.roadmap-node:hover .node-circle {
    border-color: var(--career-orange);
    color: var(--career-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
    transform: scale(1.1);
}

/* --- Outlook Stats --- */
.outlook-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .outlook-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.outlook-text h2 {
    margin-bottom: 1.5rem;
    color: var(--career-navy);
}

.outlook-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.outlook-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--career-orange);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-family: 'Bebas Neue';
    font-size: 2rem;
    color: var(--career-navy);
    margin-bottom: 0.5rem;
}

/* --- Tools Grid --- */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tool-item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tool-item i {
    font-size: 1.5rem;
    color: var(--career-navy);
}

/* --- Testimonials --- */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-soft);
}

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

.t-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.t-header h4 {
    margin: 0;
    color: var(--career-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

.t-header span {
    font-size: 0.9rem;
    color: #777;
}

.t-quote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--career-navy);
    font-size: 1.1rem;
}

.faq-toggle i {
    transition: transform 0.3s;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: #666;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--career-navy) 0%, #153366 100%);
    padding: 80px 0;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* New Metadata Badges for Cards */
.card-meta-row {
    margin-top: auto;
}

.meta-badge {
    background: #f8f9fa;
    color: #666;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #eee;
}

.meta-badge i {
    color: #FF6B00;
}

/* --- Hero Redesign V2 --- */
.career-hero-v2 {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background-color: var(--career-bg-light);
}

/* Background & Overlay */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 242, 245, 0.85) 100%);
    backdrop-filter: blur(2px);
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
}

/* Content Container */
.hero-content-v2 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
.text-center-layout {
    text-align: center;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-title-v2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--career-navy);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s ease-out;
}

.hero-subtitle-v2 {
    font-size: 1.25rem;
    color: #555;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

/* CTAs */
.hero-actions-v2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.btn-glass {
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    z-index: 3;
}

.primary-glass {
    background: rgba(255, 107, 0, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.primary-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.4);
    background: #ff6b00;
}

.secondary-glass {
    background: rgba(255, 255, 255, 0.6);
    color: var(--career-navy);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    color: var(--career-orange);
}

/* Search Bar */
.hero-search-wrapper {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    animation: fadeUp 0.8s ease-out 0.5s backwards;
}

.glass-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.glass-search-bar:hover,
.glass-search-bar:focus-within {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--career-orange);
}

.search-icon {
    font-size: 1.2rem;
    color: var(--career-gray);
    margin-right: 15px;
}

.glass-search-bar input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    color: var(--career-navy);
    outline: none;
    font-family: 'Ubuntu', sans-serif;
}

/* Quick Tags */
.hero-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.6s backwards;
    position: relative;
    z-index: 3;
}

.p-tag {
    font-size: 0.9rem;
    color: #888;
    margin-right: 5px;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--career-navy);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.glass-pill i {
    color: var(--career-orange);
}

.glass-pill:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--career-orange);
}

/* Stats Strip */
.hero-stats-strip {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    animation: fadeIn 1s ease 0.8s backwards;
}

.stats-glass-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.h-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.h-stat i {
    font-size: 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--career-orange);
    padding: 10px;
    border-radius: 50%;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .stat-divider {
        display: none;
    }

    .stats-glass-bar {
        justify-content: flex-start;
    }

    .h-stat {
        width: 45%;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.h-particle {
    position: absolute;
    color: rgba(10, 30, 63, 0.08);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.p1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.p2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    font-size: 3rem;
}

.p3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.p4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 1.5s;
    font-size: 3.5rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-v2 {
        font-size: 2.5rem;
    }

    .hero-actions-v2 {
        flex-direction: column;
        width: 100%;
    }

    .btn-glass {
        width: 100%;
        justify-content: center;
    }

    .hero-tags-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        white-space: nowrap;
    }

    .stats-glass-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-stat {
        width: 100%;
    }
}