/* Career Page Specific Styles */

/* Header Section */
.career-header {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.career-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.career-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.career-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero */
.career-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 155, 143, 0.12), rgba(124, 51, 140, 0.16));
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 35%);
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 60%);
    filter: blur(4px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
}

.particle-1 { top: -60px; right: 10%; width: 260px; height: 260px; }
.particle-2 { bottom: -80px; left: 5%; width: 200px; height: 200px; }
.particle-3 { bottom: 10%; right: 18%; width: 180px; height: 180px; }

.career-hero h1 {
    color: #052b2a;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.career-hero p.lead {
    color: #0a3f3b;
    font-size: 1.15rem;
}

.hero-kicker {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.hero-chip {
    background: white;
    color: #0b665f;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0, 155, 143, 0.15);
}

.hero-chip.secondary {
    background: rgba(124, 51, 140, 0.08);
    color: var(--primary-purple);
    border-color: rgba(124, 51, 140, 0.25);
}

.hero-cta {
    background: white;
    color: var(--primary-turquoise);
    border: 1px solid rgba(0, 155, 143, 0.25);
    box-shadow: var(--box-shadow);
    font-weight: 600;
}

.hero-cta:hover {
    background: var(--primary-turquoise);
    color: white;
}

.hero-cta-outline {
    color: white;
    border-color: rgba(255,255,255,0.65);
}

.hero-cta-employer {
    background: var(--primary-purple);
    color: white;
    border: 1px solid rgba(124, 51, 140, 0.2);
    box-shadow: var(--box-shadow);
    font-weight: 700;
    padding: 10px 20px;
}

.hero-cta-employer:hover {
    background: var(--primary-turquoise);
    color: white;
    border-color: var(--primary-turquoise);
}

.hero-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.glass-card {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-turquoise);
    margin-top: 4px;
}

.hero-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 155, 143, 0.06);
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 155, 143, 0.2);
    color: #0f3b38;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle.purple {
    background: rgba(124, 51, 140, 0.2);
    color: var(--primary-purple);
}

.mini-tag {
    margin-left: auto;
    background: white;
    border: 1px solid rgba(0, 155, 143, 0.2);
    color: var(--primary-turquoise);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Job Listings Section */
.job-listings {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
}

.job-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 155, 143, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.job-card:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-hover);
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-title {
    color: var(--primary-turquoise);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
}

.job-tag {
    background: rgba(0, 155, 143, 0.1);
    color: var(--primary-turquoise);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.job-summary {
    flex-grow: 1;
    min-height: 70px;
}

/* Career Stats Section */
.career-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 155, 143, 0.05) 0%, rgba(124, 51, 140, 0.05) 100%);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(0, 155, 143, 0.1);
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

/* Resources Section */
.career-resources {
    padding: 5rem 0;
    background: white;
}

.resource-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 155, 143, 0.1);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.resource-title {
    color: var(--primary-turquoise);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.career-contact {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form input,
.contact-form textarea {
    border: 2px solid rgba(0, 155, 143, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    width: 100%;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 3px rgba(0, 155, 143, 0.1);
    outline: none;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.job-card {
    animation: slideInLeft 0.6s ease-out forwards;
}

.stat-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.resource-card {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Animation Delays */
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.4s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
.resource-card:nth-child(2) { animation-delay: 0.2s; }
.resource-card:nth-child(3) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .career-header h1 {
        font-size: 2.5rem;
    }

    .career-header p {
        font-size: 1.1rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .resource-card {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* Custom Scrollbar */
.job-listings::-webkit-scrollbar {
    width: 8px;
}

.job-listings::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.job-listings::-webkit-scrollbar-thumb {
    background: var(--primary-turquoise);
    border-radius: 4px;
}

.job-listings::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

/* Main Career Buttons */
.nav-pills {
    gap: 10px;
}

.career-main-btn {
    background: white;
    color: var(--primary-turquoise);
    border: 1px solid var(--primary-turquoise);
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.career-main-btn:hover {
    background: var(--primary-turquoise);
    color: white;
    box-shadow: var(--box-shadow);
}

/* Active states */
.career-main-btn.active {
    background: var(--primary-turquoise);
    color: white;
    box-shadow: var(--box-shadow);
    border-color: var(--primary-turquoise);
}

.career-main-btn:not(.active) {
    background: white;
    color: var(--primary-turquoise);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 155, 143, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card h3 {
    color: var(--primary-turquoise);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card-text {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-card .list-unstyled {
    margin-bottom: 2rem;
}

.service-card .list-unstyled li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
}

.service-card .btn {
    background: var(--primary-turquoise);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.service-card .btn:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 155, 143, 0.2);
}

.service-card .social-links {
    margin: 1.5rem 0;
}

.service-card .social-links a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 10px;
    color: var(--primary-turquoise);
    background: rgba(0, 155, 143, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .social-links a:hover {
    background: var(--primary-turquoise);
    color: white;
    transform: translateX(5px);
}

.service-card .social-links i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Employer form */
.employer-form-card {
    background: linear-gradient(180deg, rgba(0,155,143,0.06) 0%, rgba(255,255,255,0.96) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 155, 143, 0.12);
}

.employer-kicker {
    color: var(--primary-purple);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.employer-form-card .form-label {
    font-weight: 600;
    color: #0a3f3b;
}

.employer-form-card .form-control,
.employer-form-card .form-select {
    border: 1px solid rgba(0, 155, 143, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: var(--transition);
}

.employer-form-card .form-control:focus,
.employer-form-card .form-select:focus {
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 3px rgba(0, 155, 143, 0.12);
}

.employer-form-card textarea {
    min-height: 110px;
}

.employer-form-card .form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.employer-form-card .form-check-input {
    margin: 0;
    width: 18px;
    height: 18px;
    border-radius: 6px;
}

.employer-form-card .badge-soft {
    background: rgba(0, 155, 143, 0.12);
    border-color: rgba(0, 155, 143, 0.2);
    color: var(--primary-turquoise);
}

.employer-form-card button[type="submit"] {
    padding: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Upcoming Events Section */
#upcoming-events {
    background: rgba(0, 155, 143, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

#servicesTab .nav-item .nav-link {
    background: white;
    color: var(--primary-turquoise);
    border: 1px solid var(--primary-turquoise);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    margin: 0 5px;
}

#servicesTab .nav-item .nav-link:hover {
    background: var(--primary-turquoise);
    color: white;
    box-shadow: var(--box-shadow);
}

#servicesTab .nav-item .nav-link.active {
    background: var(--primary-turquoise) !important;
    color: white !important;
    box-shadow: var(--box-shadow);
}

/* Override Bootstrap's default styles */
.nav-pills .nav-link,
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    border: none;
}

#servicesTab {
    display: flex;
    gap: 10px;
    justify-content: center;
} 

/* Stat & pulse section */
.career-stats {
    background: linear-gradient(135deg, rgba(0, 155, 143, 0.08) 0%, rgba(124, 51, 140, 0.05) 100%);
}

.stat-card {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: floaty 6s ease-in-out infinite;
}

.stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(0, 155, 143, 0.1);
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.pulse-badge {
    background: rgba(0, 155, 143, 0.12);
    color: var(--primary-turquoise);
    border: 1px solid rgba(0, 155, 143, 0.2);
    border-radius: 30px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.95rem;
}

.pulse-badge.secondary {
    background: rgba(124, 51, 140, 0.1);
    color: var(--primary-purple);
    border-color: rgba(124, 51, 140, 0.2);
}

/* Featured jobs */
.featured-jobs-header h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-turquoise);
}

.featured-jobs-header p {
    margin-bottom: 0;
    color: #666;
}

.filter-chip {
    border: 1px solid rgba(0, 155, 143, 0.3);
    background: white;
    color: var(--primary-turquoise);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-chip:hover {
    background: rgba(0, 155, 143, 0.08);
}

.filter-chip.active {
    background: var(--primary-turquoise);
    color: white;
    border-color: var(--primary-turquoise);
    box-shadow: var(--box-shadow);
}

.job-card .job-meta {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-card .job-meta .dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.badge-soft {
    background: rgba(0, 155, 143, 0.12);
    color: var(--primary-turquoise);
    border: 1px solid rgba(0, 155, 143, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-soft.secondary {
    background: rgba(124, 51, 140, 0.12);
    color: var(--primary-purple);
    border-color: rgba(124, 51, 140, 0.2);
}

.job-card .btn-outline-primary {
    border: 1px solid rgba(0, 155, 143, 0.3);
    color: var(--primary-turquoise);
}

.job-card .btn-outline-primary:hover {
    background: var(--primary-turquoise);
    color: white;
}

.job-card .btn-outline-primary {
    margin-top: auto;
} 
