﻿h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--line-height-heading);
}

.py-6 {
    padding-top: var(--spacing-6);
    padding-bottom: var(--spacing-6);
}

/* Hero Section */
.careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    padding-top: 8rem;
    margin-top: -76px;
}

/* Card Styles */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }




/* Icons */
.bi {
    line-height: 1;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge Style */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.bg-primary-subtle {
    background-color: var(--primary-subtle);
}

/* Section Styles */
.bg-light {
    background-color: var(--gray-100) !important;
}

/* Job Cards */
.job-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .job-card .card-body {
        padding: 1.5rem;
    }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

    .timeline:before {
        content: '';
        position: absolute;
        left: 4px;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: var(--gray-300);
    }

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    }

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Media Queries */
@media (max-width: 767.98px) {
    .careers-hero {
        padding-top: 6rem;
        min-height: 50vh;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .py-6 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-badge {
        left: -20px;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

/* Job Filter Animations */
.job-filters .btn {
    transition: all 0.3s ease;
}

    .job-filters .btn.active {
        background-color: var(--primary);
        color: white;
    }

/* Rounded Images */
.rounded-4 {
    border-radius: 1rem !important;
}

/* Form Elements Animation */
.form-control, .form-select {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        transform: translateY(-2px);
    }

/* Custom Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.5s ease forwards;
}

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--gray-600) !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}
